/* ==========================================================================
   Sütikuckó - bemutató oldal (Kecskemét)
   Modern, tiszta, ünnepi cukrász-arculat, az esküvői és alkalmi tortákra
   hangolva. Mobil-first, sima CSS, nincs build.

   Minden kép CSS placeholder blokk (nem szállítunk fotót). A visszatérő
   motívum a KÖR alakú kép-kivágás, tiszta, egy vékony arany gyűrűvel,
   modern kártya-rendszerrel párosítva (nem díszes kameó).

   Szín-tokenek WCAG AA-ra ellenőrizve a törzs- és kiemelő szövegeknél.
   ========================================================================== */

:root {
  /* Szín tokenek */
  --cream: #FBF6F1;        /* oldal háttér                              */
  --surface: #FFFFFF;      /* kártyák, panelek                          */
  --ink: #2C2328;          /* címek, törzsszöveg (kb. 13:1)             */
  --ink-soft: #5A5057;     /* másodlagos szöveg (7.2:1)                 */
  --muted: #6E6068;        /* halvány felirat, meta (5.5:1)             */
  --berry: #A83E58;        /* elsődleges: gomb, link, kiemelő (5.6:1)   */
  --berry-dark: #8E3049;   /* gomb hover, erős link                     */
  --sage: #8FA07C;         /* CSAK dísz: vonalak, chip-háttér, motívum  */
  --sage-ink: #56663F;     /* sage szöveg AA-ra sötétítve (5.9:1)       */
  --sage-wash: #EDF0E6;    /* nagyon halvány sage panel-háttér          */
  --gold: #C6A15B;         /* CSAK dísz: csillag, hajszálvonal, gyűrű   */
  --gold-soft: #E6D6B4;

  --line: #ECDFD6;         /* meleg hajszálvonal keret                  */
  --line-2: #E3DAD0;
  --ph-a: #F6EEE6;         /* placeholder-kép világos vég               */
  --ph-b: #E9E4D6;         /* placeholder-kép sötétebb vég (sage-be)    */

  /* Tipográfia */
  --font-display: "Libre Caslon Display", Georgia, "Times New Roman", serif;
  --font-body: "Mulish", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Ritmus */
  --space-section: clamp(4rem, 9.5vw, 7rem);
  --container: 70rem;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
}

*, *::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(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* --------------------------------------------------------------------------
   Bemutató sáv
   -------------------------------------------------------------------------- */
.demo-bar {
  background: var(--ink); color: #E8DED9;
  text-align: center; font-size: 0.72rem; line-height: 1.5;
  letter-spacing: 0.03em; padding: 0.5rem 1rem;
}
.demo-bar strong { color: #FFFFFF; font-weight: 800; }

/* --------------------------------------------------------------------------
   Tipográfia
   -------------------------------------------------------------------------- */
h1, h2, h3 { line-height: 1.16; font-weight: 400; }

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

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 4.6vw, 2.85rem);
  letter-spacing: -0.005em;
  color: var(--ink);
}

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

p { max-width: 62ch; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1rem;
}
.eyebrow--sage { color: var(--sage-ink); }

.lede {
  font-size: clamp(1.05rem, 2.4vw, 1.22rem);
  color: var(--ink-soft); max-width: 40em;
  line-height: 1.65;
}
.muted { color: var(--muted); }
.soft-note { color: var(--muted); font-size: 0.9rem; max-width: 46em; }

/* --------------------------------------------------------------------------
   Layout segédek
   -------------------------------------------------------------------------- */
.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.62); }

.section-head { max-width: 46rem; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .lede { margin-inline: auto; }

/* --------------------------------------------------------------------------
   Vékony elválasztó: sage vonal + kis arany rombusz
   -------------------------------------------------------------------------- */
.rule {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  max-width: var(--container); margin-inline: auto;
  padding-inline: var(--gutter);
}
.rule::before, .rule::after {
  content: ""; height: 1px; flex: 1 1 auto; max-width: 9rem;
  background: linear-gradient(90deg, transparent, var(--line-2));
}
.rule::after { background: linear-gradient(270deg, transparent, var(--line-2)); }
.rule span {
  width: 0.5rem; height: 0.5rem; flex: none;
  background: var(--gold); transform: rotate(45deg);
  box-shadow: 0 0 0 4px var(--cream), 0 0 0 5px var(--gold-soft);
}

/* --------------------------------------------------------------------------
   Gombok
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.08em;
  text-transform: uppercase; text-decoration: none;
  padding: 0.95rem 1.9rem; border-radius: 10px;
  border: 2px solid transparent; cursor: pointer; text-align: center;
}
.btn--primary { background: var(--berry); color: #FFFFFF; }
.btn--primary:hover { background: var(--berry-dark); color: #FFFFFF; }
.btn--ghost { background: transparent; color: var(--berry-dark); border-color: var(--berry); }
.btn--ghost:hover { background: var(--berry); color: #FFFFFF; }
.btn--light { background: #FFFFFF; color: var(--berry-dark); }
.btn--light:hover { background: var(--cream); color: var(--berry-dark); }

@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.985); }
  .btn--primary:hover { transform: translateY(-1px); box-shadow: 0 12px 26px rgba(168, 62, 88, 0.28); }
  .btn--ghost:hover, .btn--light:hover { transform: translateY(-1px); }
}

/* --------------------------------------------------------------------------
   Fejléc / navigáció
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 246, 241, 0.92);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(44, 35, 40, 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.65rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
  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: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--sage-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: 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(--cream);
  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-size: 0.82rem; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn)[aria-current="page"] { color: var(--berry); }
.nav-menu a:not(.btn)[aria-current="page"] { border-bottom: 2px solid var(--gold); }

.nav-book { flex: none; }
.nav-book .btn { padding: 0.65rem 1.25rem; font-size: 0.74rem; }

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

@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 fotó-keretek - tiszta kör kivágás egy vékony arany gyűrűvel
   -------------------------------------------------------------------------- */
.photo-ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background:
    radial-gradient(120% 90% at 32% 22%, var(--ph-a) 0%, var(--ph-b) 72%, #DFDCC9 100%);
  border: 1px solid var(--line-2);
  color: #857160; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 1.25rem; overflow: hidden;
}
.photo-ph .ph-label { max-width: 16em; line-height: 1.5; }
.photo-ph .ph-tag {
  display: block; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--berry); font-size: 0.66rem; margin-bottom: 0.4rem;
}

.cameo { aspect-ratio: 1; border-radius: 50%; }
.tile { aspect-ratio: 1; border-radius: 18px; }

/* --------------------------------------------------------------------------
   Hős - OSZTOTT elrendezés: bal oldalon a szöveg, jobbra a torta-kör klaszter
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--cream); }
.hero__wash { position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(58% 55% at 88% 12%, rgba(168, 62, 88, 0.12) 0%, transparent 60%),
    radial-gradient(50% 55% at 6% 92%, rgba(143, 160, 124, 0.16) 0%, transparent 62%),
    linear-gradient(155deg, #FDF9F5 0%, var(--cream) 55%, #F7EFE7 100%);
}

.hero__inner {
  position: relative; z-index: 2;
  display: grid; gap: clamp(2.25rem, 5vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.75rem, 7vw, 5rem);
}
@media (min-width: 60em) {
  .hero__inner { grid-template-columns: 1.02fr 0.98fr; }
}

.hero__text .lede { margin-top: 1.25rem; }
.hero .tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.2rem, 3vw, 1.7rem); color: var(--berry); margin-top: 0.35rem;
}
.hero h1 { margin-top: 0.5rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 2rem; }

.hero-proof {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  gap: 0.55rem 0.9rem; margin-top: 2.25rem;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; padding: 0.7rem 1.15rem;
  box-shadow: 0 10px 28px rgba(44, 35, 40, 0.06);
}
.hero-proof__num { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; color: var(--ink); line-height: 1; }
.hero-proof__txt { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.02em; color: var(--muted); }
.hero-proof__txt strong { color: var(--berry-dark); font-weight: 800; }

/* torta-kör klaszter */
.hero__media {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(0.75rem, 2vw, 1.15rem);
}
.hero__media .m-main { grid-column: 1; grid-row: 1 / 3; }
.hero__media .m-side-1 { grid-column: 2; grid-row: 1; align-self: end; }
.hero__media .m-side-2 { grid-column: 2; grid-row: 2; }

.hero__media .cameo {
  border: none;
  box-shadow:
    0 0 0 1px rgba(198, 161, 91, 0.7),
    0 0 0 6px var(--cream),
    0 0 0 7px rgba(198, 161, 91, 0.4),
    0 22px 46px rgba(44, 35, 40, 0.16);
}
.hero__media .m-cap {
  text-align: center; font-size: 0.7rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.7rem;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__media .m-main { animation: floatA 9s ease-in-out infinite alternate; }
  .hero__media .m-side-1 { animation: floatA 7.5s ease-in-out infinite alternate; }
  .hero__media .m-side-2 { animation: floatA 8.5s ease-in-out infinite alternate; }
  @keyframes floatA { from { transform: translateY(0); } to { transform: translateY(-9px); } }
}

/* --------------------------------------------------------------------------
   Csillag-értékelés (két rétegű SVG: szürke alap + arany előtér vágva)
   -------------------------------------------------------------------------- */
.rating-stars { position: relative; display: inline-block; width: 8.7rem; height: 1.45rem; vertical-align: middle; }
.rating-stars__row { position: absolute; inset: 0; display: flex; gap: 0.3rem; }
.rating-stars__row svg { width: 1.4rem; height: 1.4rem; flex: none; display: block; }
.rating-stars__row--bg svg { fill: #DED2C0; }
.rating-stars__row--fg { overflow: hidden; }
.rating-stars__row--fg svg { fill: var(--gold); }

.rating-stars--sm { width: 6.4rem; height: 1.05rem; }
.rating-stars--sm .rating-stars__row { gap: 0.22rem; }
.rating-stars--sm .rating-stars__row svg { width: 1.05rem; height: 1.05rem; }

/* --------------------------------------------------------------------------
   Kulcsszó-szalag (finom, sage nagybetűk, arany elválasztók)
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; background: var(--sage-wash); border-block: 1px solid var(--line); padding-block: 0.8rem; }
.marquee__track { display: flex; width: max-content; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage-ink); white-space: nowrap;
}
.marquee__group i { font-style: normal; color: var(--gold); margin-inline: 1.35rem; font-weight: 700; }

@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; }
}

/* --------------------------------------------------------------------------
   Halvány dísz-sáv
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  background:
    radial-gradient(55% 80% at 6% 0%, rgba(143, 160, 124, 0.14) 0%, transparent 58%),
    radial-gradient(50% 70% at 100% 100%, rgba(168, 62, 88, 0.08) 0%, transparent 58%),
    #FCF8F3;
  border-block: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Kártyák - modern, tiszta: fehér lap, vékony keret, pill-címke
   -------------------------------------------------------------------------- */
.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: 16px; padding: 1.7rem 1.55rem;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.card-tag {
  align-self: flex-start;
  font-size: 0.66rem; font-weight: 800; letter-spacing: 0.13em; text-transform: uppercase;
  padding: 0.32rem 0.75rem; border-radius: 999px;
  background: var(--sage-wash); color: var(--sage-ink); margin-bottom: 0.4rem;
}
.card-tag--berry { background: #FBEBEF; color: var(--berry-dark); }
.card p { font-size: 0.95rem; color: var(--ink-soft); }
.card .card-link {
  margin-top: auto; padding-top: 0.8rem;
  font-size: 0.78rem; font-weight: 800; letter-spacing: 0.09em;
  text-transform: uppercase; text-decoration: none;
}

@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(-4px); box-shadow: 0 18px 36px rgba(44, 35, 40, 0.1); border-color: var(--gold-soft); }
}

/* --------------------------------------------------------------------------
   Termék-lista (kínálat oldal)
   -------------------------------------------------------------------------- */
.menu-category { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.menu-category > h2 { margin-bottom: 0.4rem; }
.menu-category > .category-note { color: var(--muted); font-size: 0.95rem; max-width: 42em; margin-bottom: 1.5rem; }

.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: 0.3rem 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.02rem; }
.menu-item .price {
  font-size: 0.76rem; font-weight: 800; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--sage-ink);
  justify-self: end; text-align: right; white-space: nowrap;
}
.menu-item .desc { grid-column: 1 / -1; font-size: 0.93rem; color: var(--ink-soft); max-width: 48em; }

/* --------------------------------------------------------------------------
   Lépések (hogyan rendelhet) - valódi sorrend, ezért számozott
   -------------------------------------------------------------------------- */
.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: 2px solid var(--gold); padding-top: 1.1rem; }
.step .step-num {
  display: block; font-family: var(--font-display);
  font-size: 2.1rem; line-height: 1; color: var(--berry); margin-bottom: 0.5rem;
}
.step h3 { margin-bottom: 0.4rem; }
.step p { font-size: 0.94rem; color: var(--ink-soft); }

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

/* --------------------------------------------------------------------------
   Vélemények modul
   -------------------------------------------------------------------------- */
.reviews-lead { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; margin-bottom: 2.25rem; }
.reviews-score { display: flex; align-items: baseline; gap: 0.5rem; }
.reviews-score__num { font-family: var(--font-display); font-weight: 400; font-size: 2.7rem; color: var(--ink); line-height: 1; }
.reviews-score__max { font-size: 1rem; color: var(--muted); font-weight: 700; }
.reviews-score__meta { display: flex; flex-direction: column; gap: 0.35rem; }
.reviews-score__meta .count { font-size: 0.9rem; color: var(--muted); font-weight: 700; }

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

.review-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 16px; padding: 1.55rem 1.45rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.review-card blockquote { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.62; }
.review-card .review-by {
  margin-top: auto; display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 800; color: var(--ink);
}
.review-card .review-by::before {
  content: ""; width: 2rem; height: 2rem; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 34% 30%, var(--gold-soft), var(--gold));
}
.reviews-note { margin-top: 1.75rem; font-size: 0.8rem; color: var(--muted); max-width: 56em; }

/* --------------------------------------------------------------------------
   Tortáink - szűrhető galéria (kör kivágás)
   -------------------------------------------------------------------------- */
.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: 800;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.55rem 1.15rem; border-radius: 999px; border: 1px solid var(--line-2);
  background: var(--surface); color: var(--ink); cursor: pointer;
}
.filter-btn:hover { border-color: var(--berry); color: var(--berry); }
.filter-btn[aria-pressed="true"] { background: var(--berry); border-color: var(--berry); color: #FFFFFF; }

.gallery-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 48em) { .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.gallery-item { cursor: zoom-in; }
.gallery-item .cameo {
  box-shadow: 0 0 0 1px rgba(198, 161, 91, 0.45), 0 14px 30px rgba(44, 35, 40, 0.1);
}
.gallery-item figcaption { font-size: 0.8rem; color: var(--muted); text-align: center; margin-top: 0.75rem; }
.gallery-item.is-hidden { display: none; }

@media (prefers-reduced-motion: no-preference) {
  .gallery-item .cameo { transition: transform 0.35s ease; }
  .gallery-item:hover .cameo { 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 sáv (berry alap = ünnepi, fehér szöveggel AA)
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background:
    radial-gradient(70% 130% at 88% 8%, rgba(198, 161, 91, 0.32) 0%, transparent 55%),
    radial-gradient(60% 120% at 5% 100%, rgba(44, 35, 40, 0.22) 0%, transparent 60%),
    var(--berry);
  color: #FFFFFF; text-align: center; padding-block: clamp(3rem, 7vw, 4.75rem);
}
.cta-band h2 { color: #FFFFFF; margin-bottom: 0.75rem; }
.cta-band p { color: #FBE7EC; max-width: 34em; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band .eyebrow { color: #FBE7EC; }

/* --------------------------------------------------------------------------
   Aloldal fejléc
   -------------------------------------------------------------------------- */
.page-head {
  position: relative; overflow: hidden;
  background:
    radial-gradient(55% 120% at 90% 8%, rgba(168, 62, 88, 0.12) 0%, transparent 58%),
    radial-gradient(50% 90% at 2% 100%, rgba(143, 160, 124, 0.16) 0%, transparent 58%),
    #FCF8F3;
  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.3rem, 5.5vw, 3.5rem); }
.page-head .lede { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   Kapcsolat
   -------------------------------------------------------------------------- */
.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: 800;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--berry); margin-bottom: 0.3rem;
}
.contact-list a { color: var(--berry-dark); }

.open-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.32rem 0.85rem; border-radius: 999px; border: 1px solid var(--line-2); color: var(--muted);
}
.open-badge::before { content: ""; width: 0.55em; height: 0.55em; border-radius: 50%; background: var(--line-2); flex: none; }
.open-badge.is-open { color: #34623D; border-color: #A9C4A0; background: #ECF3E9; }
.open-badge.is-open::before { background: #4C8A57; }
.open-badge.is-closed { color: var(--berry-dark); border-color: #E6B7C0; background: #FBEBEF; }
.open-badge.is-closed::before { background: var(--berry); }

.hours-list { list-style: none; margin-top: 1rem; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: 0.55rem 0.6rem; border-bottom: 1px solid var(--line); font-size: 0.95rem;
}
.hours-list .day { color: var(--ink); font-weight: 700; }
.hours-list .time { color: var(--muted); }
.hours-list li.is-today { background: var(--sage-wash); border-radius: 8px; }
.hours-list li.is-today .day { color: var(--sage-ink); font-weight: 800; }

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

/* Demó űrlap */
.form-grid { display: grid; gap: 1.1rem; margin-top: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 1rem; padding: 0.7rem 0.85rem;
  border: 1px solid var(--line-2); border-radius: 11px; 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(--berry); 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: 11px;
  border: 1px solid #A9C4A0; background: #ECF3E9; color: #34623D; 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: 800; font-size: 1rem; 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-body); font-weight: 700; font-size: 1.5rem; color: var(--berry);
}
.faq details[open] summary::after { content: "\2212"; }
.faq .faq-a { padding: 0 0.25rem 1.25rem; max-width: 46em; color: var(--ink-soft); font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   Lábléc
   -------------------------------------------------------------------------- */
.site-footer { background: var(--ink); color: #DCD3D0; padding-block: clamp(2.5rem, 6vw, 4rem) 1.5rem; font-size: 0.92rem; }
.site-footer a { color: var(--gold-soft); }
.site-footer a:hover { color: #F2E4C6; }

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

.footer-logo { width: 44px; height: 44px; margin-bottom: 0.75rem; opacity: 0.96; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--cream); font-weight: 400; }
.footer-brand small {
  display: block; font-family: var(--font-body); font-size: 0.56rem; font-weight: 800;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold-soft); margin-top: 0.25rem;
}
.footer-head { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #B9AEA9; 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: #9C9089; max-width: 56em; margin-top: 1.1rem; }
.footer-bottom {
  border-top: 1px solid #40353A; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.8rem; color: #9C9089;
}

/* --------------------------------------------------------------------------
   Mobil ragadós sáv
   -------------------------------------------------------------------------- */
.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, 241, 0.96); backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-book-bar .btn { flex: 1; padding: 0.8rem 1rem; }
  .mobile-book-bar .btn--ghost { flex: 0 0 auto; }
  body:has(.mobile-book-bar) { padding-bottom: 4.4rem; }
}

/* --------------------------------------------------------------------------
   Lightbox
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(44, 35, 40, 0.9); backdrop-filter: blur(6px);
}
.lightbox.is-open { display: flex; }
.lightbox figure { max-width: min(92vw, 32rem); width: 100%; text-align: center; }
.lightbox .photo-ph {
  width: 100%; max-width: 24rem; margin-inline: auto; border-radius: 50%;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); font-size: 0.95rem;
}
.lightbox figcaption { color: #F1E5E1; 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(241, 229, 225, 0.4);
  background: rgba(44, 35, 40, 0.6); color: #F6ECED; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(168, 62, 88, 0.85); }

/* --------------------------------------------------------------------------
   Illusztrációs jelölés (bemutató)
   -------------------------------------------------------------------------- */
.photo-ph.has-ill { position: relative; }
.ill-chip {
  position: absolute; right: 8%; bottom: 8%; z-index: 2;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 999px;
  background: rgba(44, 35, 40, 0.74); color: #FBF6F1; pointer-events: none;
}
.cameo.has-ill .ill-chip { right: auto; left: 50%; transform: translateX(-50%); bottom: 13%; }

/* --------------------------------------------------------------------------
   Scroll reveal (csak mozgásnál; JS nélkül végig látható)
   -------------------------------------------------------------------------- */
@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; }
}

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