/* ==========================================================================
   Tugyi Cukrászda - bemutató oldal
   Lágy, nőies, porcelán cukrász-arculat. Mobil-first, sima CSS, nincs build.

   Minden kép CSS placeholder blokk (nem szállítunk fotót). A visszatérő
   motívum a LÁGY, LEKEREKÍTETT (26px) kép-kivágás és a fodros-csipke szegély,
   amely a hőson, a galérián és az elválasztókon egységesen jelenik meg.

   Minden szöveg/háttér pár WCAG AA (4.5:1 felett) ellenőrizve.
   ========================================================================== */

:root {
  /* Szín tokenek */
  --porcelain: #FBF5EF;      /* oldal háttér                              */
  --porcelain-2: #F5ECE3;    /* halvány sáv                                */
  --surface: #FFFDFB;        /* kártyák, kiemelt panelek                   */
  --plum: #35262B;           /* címek, sötét sávok (13.3:1)                */
  --plum-deep: #2C1E23;      /* lábléc                                     */
  --prose: #4A3843;          /* törzsszöveg                                */
  --muted: #75626B;          /* halvány, másodlagos szöveg (5.2:1)         */

  --rose: #B56A72;           /* márka rózsa - CSAK dísz (pötty, szegély)   */
  --rose-ink: #A8505A;       /* kiemelő szöveg, link, gomb (4.9:1 / fehéren 5.3:1) */
  --rose-hover: #8F3D48;     /* gomb hover, erős link                      */
  --rose-soft: #E7C9CD;      /* halvány rózsa keret / csipke               */

  --pistachio: #7E9B6E;      /* pisztácia - dísz akcentus                  */
  --pistachio-ink: #587646;  /* pisztácia szöveg (4.7:1)                   */
  --pistachio-soft: #D8E2CD; /* halvány pisztácia keret / sáv             */

  --gold: #C4A05C;           /* meleg arany - CSAK finom dísz              */
  --gold-lt: #E3C489;        /* sötét háttéren: arany dísz + eyebrow (5.8:1) */

  --block: #F0E4DB;          /* placeholder-kép alapszín                   */
  --line: #EADFD4;           /* hajszálvonal keret                         */
  --line-2: #E1D2C8;         /* erősebb keret                              */

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

  /* Ritmus */
  --space-section: clamp(4rem, 10vw, 7.5rem);
  --container: 68rem;
  --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.65;
  color: var(--prose);
  background-color: var(--porcelain);
  -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* --------------------------------------------------------------------------
   Bemutató sáv (minden oldal tetején)
   -------------------------------------------------------------------------- */
.demo-bar {
  background: var(--plum-deep); color: #F1E4DD;
  text-align: center; font-size: 0.72rem; line-height: 1.5;
  letter-spacing: 0.03em; padding: 0.45rem 1rem;
}
.demo-bar strong { color: #FBEDE9; font-weight: 700; }

/* --------------------------------------------------------------------------
   Tipográfia
   -------------------------------------------------------------------------- */
h1, h2, h3 { line-height: 1.16; font-weight: 600; color: var(--plum); }

h1, .display {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 4.3rem);
  letter-spacing: -0.005em;
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.5vw, 2.7rem);
}

h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.1rem; }

p { max-width: 62ch; }

.eyebrow {
  display: inline-flex; align-items: center;
  font-family: var(--font-body);
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose-ink);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: ""; display: inline-block;
  width: 1.35em; height: 0.5em; margin-right: 0.7em;
  background:
    radial-gradient(circle at 25% 120%, var(--gold) 44%, transparent 46%),
    radial-gradient(circle at 75% 120%, var(--rose) 44%, transparent 46%);
  background-size: 50% 100%; background-repeat: no-repeat;
  background-position: left center, right center;
}

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

/* --------------------------------------------------------------------------
   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.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 { justify-content: center; }

/* --------------------------------------------------------------------------
   Csipke / fodor elválasztó (a visszatérő cukrász-motívum)
   Fölfelé néző fél-körök sora = tortacsipke / doily perem.
   -------------------------------------------------------------------------- */
.scallop-strip {
  display: flex; justify-content: center; align-items: flex-end;
  gap: 0.55rem; padding-block: 0.9rem; border: 0;
}
.scallop-strip span {
  width: 1rem; height: 0.5rem; flex: none;
  border-radius: 1rem 1rem 0 0;
  background: var(--rose-soft);
}
.scallop-strip span:nth-child(3n+2) { background: var(--pistachio-soft); }
.scallop-strip span:nth-child(3n+3) { background: #EBD6AF; }
.scallop-strip .pearl {
  width: 0.55rem; height: 0.55rem; border-radius: 50%;
  background: var(--gold); align-self: center;
}

/* --------------------------------------------------------------------------
   Gombok
   -------------------------------------------------------------------------- */
.btn {
  display: inline-block; font-family: var(--font-body);
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em;
  text-decoration: none;
  padding: 0.95rem 2rem; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer; text-align: center;
}
.btn--primary { background: var(--rose-ink); color: #FFFDFB; }
.btn--primary:hover { background: var(--rose-hover); color: #FFFDFB; }
.btn--ghost { background: transparent; color: var(--rose-ink); border-color: var(--rose-soft); }
.btn--ghost:hover { background: var(--rose-ink); color: #FFFDFB; border-color: var(--rose-ink); }
.btn--light { background: var(--porcelain); color: var(--rose-ink); }
.btn--light:hover { background: #FFF; color: var(--rose-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(168, 80, 90, 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, 245, 239, 0.92);
  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(53, 38, 43, 0.08); }

.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.6rem;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 600;
  text-decoration: none; color: var(--plum); 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.26em;
  text-transform: uppercase; color: var(--rose-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-2); border-radius: 10px; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--plum); 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;
}
.nav-menu a:not(.btn) {
  display: block; padding: 0.65rem 0.25rem;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em;
  text-decoration: none; color: var(--plum);
}
.nav-menu a:not(.btn):hover,
.nav-menu a:not(.btn)[aria-current="page"] { color: var(--rose-ink); }
.nav-menu a:not(.btn)[aria-current="page"] { border-bottom: 2px solid var(--gold); }

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

@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 fotó-keretek - a LÁGY, 26px LEKEREKÍTETT kivágás a motívum
   -------------------------------------------------------------------------- */
.photo-ph {
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: radial-gradient(120% 90% at 30% 18%, #FCF4EC 0%, var(--block) 62%, #E6D6C9 100%);
  border: 1px solid var(--line);
  color: #7C6470; font-size: 0.78rem; letter-spacing: 0.03em;
  padding: 1.25rem; overflow: hidden;
}
.photo-ph .ph-label { max-width: 15em; }
.photo-ph .ph-tag {
  display: block; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rose-ink); font-size: 0.68rem; margin-bottom: 0.35rem;
}

/* lágy lekerekített kivágás = a cukrász-vitrin motívuma */
.crop { border-radius: 26px; aspect-ratio: 4 / 5; }
.crop--sq { aspect-ratio: 1; }
.plate--wide { aspect-ratio: 4 / 3.4; border-radius: 26px; }

/* finom kettős keret (arany hajszál + porcelán rés + rózsa hajszál) */
.crop.framed {
  border: none;
  box-shadow:
    0 0 0 1px var(--rose-soft),
    0 0 0 6px var(--surface),
    0 0 0 7px rgba(196, 160, 92, 0.55),
    0 20px 44px rgba(53, 38, 43, 0.14);
}

/* --------------------------------------------------------------------------
   Hős - középre zárt szó-logó + lágy cím + finom termék-sor csipke-polcon
   -------------------------------------------------------------------------- */
.hero { position: relative; overflow: hidden; background: var(--porcelain); }
.hero__wash, .hero__glow { position: absolute; inset: 0; }
.hero__wash {
  background:
    radial-gradient(70% 55% at 12% 12%, rgba(181, 106, 114, 0.20) 0%, transparent 60%),
    radial-gradient(66% 60% at 90% 20%, rgba(126, 155, 110, 0.18) 0%, transparent 62%),
    radial-gradient(60% 60% at 80% 100%, rgba(196, 160, 92, 0.16) 0%, transparent 60%),
    linear-gradient(165deg, #FDF8F3 0%, var(--porcelain) 45%, #F6ECE2 100%);
}
.hero__glow { overflow: hidden; pointer-events: none; }
.hero__glow .glow { position: absolute; border-radius: 50%; filter: blur(74px); opacity: 0.4; }
.hero__glow .glow--rose {
  width: 22rem; height: 22rem; top: -6rem; left: 6%;
  background: radial-gradient(circle, var(--rose) 0%, transparent 70%);
}
.hero__glow .glow--pistachio {
  width: 18rem; height: 18rem; bottom: -5rem; right: 10%;
  background: radial-gradient(circle, var(--pistachio) 0%, transparent 70%);
}

.hero__inner { position: relative; z-index: 2; text-align: center; padding-block: clamp(3.5rem, 9vw, 6.5rem); }
.hero__inner .eyebrow { justify-content: center; }
.hero__inner .lede { margin-inline: auto; margin-top: 1.25rem; }

.hero h1 { position: relative; display: inline-block; }
.hero h1::after {
  content: ""; display: block; height: 0.7rem; margin: 0.55rem auto 0; width: min(72%, 15rem);
  background: linear-gradient(90deg, var(--rose-soft), var(--gold-lt), var(--pistachio-soft));
  -webkit-mask: repeating-radial-gradient(circle at 0.5rem bottom, #000 0 0.42rem, transparent 0.44rem 1rem);
  mask: repeating-radial-gradient(circle at 0.5rem bottom, #000 0 0.42rem, transparent 0.44rem 1rem);
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  -webkit-mask-size: 1rem 0.7rem; mask-size: 1rem 0.7rem;
}

.hero .tagline {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.2rem, 3vw, 1.7rem); color: var(--rose-ink); margin-top: 0.85rem;
}

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

/* Google társadalmi bizonyíték - kiemelt statisztika */
.hero-proof {
  display: inline-flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.65rem 1rem; margin-top: 2.4rem;
  background: var(--surface); border: 1px solid var(--line-2);
  border-radius: 999px; padding: 0.7rem 1.4rem;
  box-shadow: 0 12px 30px rgba(53, 38, 43, 0.07);
}
.hero-proof__num { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; color: var(--plum); line-height: 1; }
.hero-proof__txt { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.03em; color: var(--muted); }
.hero-proof__txt strong { color: var(--rose-ink); font-weight: 700; }

/* finom termék-sor egy csipke-polcon */
.hero-row {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: clamp(0.9rem, 3vw, 1.75rem); margin-top: clamp(2.75rem, 6vw, 3.75rem);
}
.hero-row .crop-wrap { width: clamp(6.5rem, 20vw, 9.5rem); }
.hero-row .crop-cap {
  text-align: center; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 0.85rem;
}
.hero-row .crop-wrap:nth-child(even) { margin-top: clamp(0rem, 3vw, 1.5rem); }

.hero-shelf {
  position: relative; z-index: 2; max-width: 40rem; margin: 1.4rem auto 0; height: 0.9rem;
  -webkit-mask: repeating-radial-gradient(circle at 0.55rem top, #000 0 0.5rem, transparent 0.52rem 1.1rem);
  mask: repeating-radial-gradient(circle at 0.55rem top, #000 0 0.5rem, transparent 0.52rem 1.1rem);
  -webkit-mask-repeat: repeat-x; mask-repeat: repeat-x;
  -webkit-mask-size: 1.1rem 0.9rem; mask-size: 1.1rem 0.9rem;
  background: linear-gradient(90deg, var(--rose-soft), var(--pistachio-soft), #EBD6AF);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-row .crop-wrap { animation: cropFloat 8s ease-in-out infinite alternate; }
  .hero-row .crop-wrap:nth-child(2) { animation-duration: 9.5s; }
  .hero-row .crop-wrap:nth-child(3) { animation-duration: 7s; }
  .hero-row .crop-wrap:nth-child(4) { animation-duration: 8.6s; }
  @keyframes cropFloat { from { transform: translateY(0); } to { transform: translateY(-9px); } }
  .hero__glow .glow--rose { animation: glowA 22s ease-in-out infinite alternate; }
  .hero__glow .glow--pistachio { animation: glowB 26s ease-in-out infinite alternate; }
  @keyframes glowA { from { transform: translate(0,0) scale(1); } to { transform: translate(2.2rem, 1.4rem) scale(1.08); } }
  @keyframes glowB { from { transform: translate(0,0) scale(1); } to { transform: translate(-1.8rem, -1.3rem) scale(1.06); } }
}

/* --------------------------------------------------------------------------
   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.32rem; }
.rating-stars__row svg { width: 1.4rem; height: 1.4rem; flex: none; display: block; }
.rating-stars__row--bg svg { fill: #E1D2C8; }
.rating-stars__row--fg { overflow: hidden; }
.rating-stars__row--fg svg { fill: var(--gold); }

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

/* --------------------------------------------------------------------------
   Marquee szalag (kínálat)
   -------------------------------------------------------------------------- */
.marquee { overflow: hidden; background: var(--surface); border-block: 1px solid var(--line); padding-block: 0.85rem; }
.marquee__track { display: flex; width: max-content; }
.marquee__group { display: flex; align-items: center; flex: none; }
.marquee__group span {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee__group i { font-style: normal; color: var(--rose); 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; }
}

/* --------------------------------------------------------------------------
   Lágy dísz-sáv
   -------------------------------------------------------------------------- */
.band {
  position: relative;
  background:
    radial-gradient(55% 80% at 6% 0%, rgba(181, 106, 114, 0.12) 0%, transparent 55%),
    radial-gradient(50% 70% at 100% 100%, rgba(126, 155, 110, 0.12) 0%, transparent 55%),
    var(--porcelain-2);
  border-block: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Kártyák (kategóriák + jellemző rácsok)
   -------------------------------------------------------------------------- */
.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: 20px; padding: 1.6rem 1.5rem;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.card .swatch-dot { width: 1.55rem; height: 1.55rem; border-radius: 50%; flex: none; margin-bottom: 0.4rem; }
.card p { font-size: 0.94rem; color: var(--prose); }
.card .card-link {
  margin-top: auto; padding-top: 0.75rem;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.06em;
  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(-5px); box-shadow: 0 18px 36px rgba(53, 38, 43, 0.1); border-color: var(--rose-soft); }
}

/* --------------------------------------------------------------------------
   Termék-lista (tortaink 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.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.02rem; }
.menu-item .price {
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--pistachio-ink);
  justify-self: end; text-align: right; white-space: nowrap;
}
.menu-item .desc { grid-column: 1 / -1; font-size: 0.92rem; color: var(--prose); max-width: 48em; }

/* --------------------------------------------------------------------------
   Lépések (hogyan rendelhet)
   -------------------------------------------------------------------------- */
.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(--rose-soft); padding-top: 1.1rem; }
.step .step-num {
  display: block; font-family: var(--font-display);
  font-size: 2.2rem; line-height: 1; color: var(--rose-ink); margin-bottom: 0.55rem;
}
.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); }
}

/* --------------------------------------------------------------------------
   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: 600; font-size: 2.6rem; color: var(--plum); line-height: 1; }
.reviews-score__max { font-size: 1rem; color: var(--muted); font-weight: 600; }
.reviews-score__meta { display: flex; flex-direction: column; gap: 0.35rem; }
.reviews-score__meta .count { font-size: 0.9rem; color: var(--muted); font-weight: 600; }

.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: 20px; padding: 1.5rem 1.4rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.review-card blockquote { color: var(--prose); font-size: 0.96rem; line-height: 1.6; }
.review-card .review-by {
  margin-top: auto; display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.82rem; font-weight: 700; color: var(--plum);
}
.review-card .review-by::before {
  content: ""; width: 2rem; height: 2rem; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 35% 30%, var(--rose-soft), var(--rose));
}
.reviews-note { margin-top: 1.75rem; font-size: 0.8rem; color: var(--muted); max-width: 54em; }

/* --------------------------------------------------------------------------
   Galéria
   -------------------------------------------------------------------------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-btn {
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.5rem 1.1rem; border-radius: 999px; border: 1px solid var(--line-2);
  background: transparent; color: var(--plum); cursor: pointer;
}
.filter-btn:hover { border-color: var(--rose-ink); color: var(--rose-ink); }
.filter-btn[aria-pressed="true"] { background: var(--rose-ink); border-color: var(--rose-ink); color: #FFFDFB; }

.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 .crop {
  box-shadow: 0 0 0 1px var(--rose-soft), 0 14px 30px rgba(53, 38, 43, 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 .crop { transition: transform 0.35s ease; }
  .gallery-item:hover .crop { 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 (mély szilva alap = AA biztos világos szöveghez)
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: radial-gradient(70% 120% at 85% 10%, rgba(196, 160, 92, 0.26) 0%, transparent 55%), var(--plum);
  color: #FFF; text-align: center; padding-block: clamp(3rem, 7vw, 5rem);
}
.cta-band h2 { color: #FFF; margin-bottom: 0.75rem; }
.cta-band p { color: #EFDCDF; max-width: 34em; margin-inline: auto; margin-bottom: 1.75rem; }
.cta-band .eyebrow { color: var(--gold-lt); justify-content: center; }

/* --------------------------------------------------------------------------
   Aloldal fejléc
   -------------------------------------------------------------------------- */
.page-head {
  position: relative; overflow: hidden;
  background:
    radial-gradient(58% 120% at 88% 10%, rgba(181, 106, 114, 0.18) 0%, transparent 58%),
    radial-gradient(50% 90% at 100% 100%, rgba(126, 155, 110, 0.14) 0%, transparent 55%),
    var(--porcelain-2);
  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; }

/* --------------------------------------------------------------------------
   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: 700;
  letter-spacing: 0.13em; text-transform: uppercase; color: var(--rose-ink); margin-bottom: 0.25rem;
}
.contact-list a { color: var(--rose-ink); }

.open-badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 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: #2F5A38; border-color: #9BC3A3; background: #EDF5EE; }
.open-badge.is-open::before { background: #4C8A57; }
.open-badge.is-closed { color: var(--rose-hover); border-color: var(--rose-soft); background: #FBEEEF; }
.open-badge.is-closed::before { background: var(--rose-ink); }

.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(--plum); font-weight: 600; }
.hours-list .time { color: var(--muted); }
.hours-list li.is-today { background: #F7EBE9; border-radius: 10px; }
.hours-list li.is-today .day { color: var(--rose-hover); font-weight: 700; }

.map-ph { border-radius: 20px; 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.8rem; font-weight: 700; 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: 12px; background: var(--surface); color: var(--plum); width: 100%;
}
.field textarea { min-height: 7rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid var(--rose-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: 12px;
  border: 1px solid #9BC3A3; background: #EDF5EE; color: #2F5A38; 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: 700; font-size: 1rem; list-style: none; position: relative; color: var(--plum);
}
.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(--rose-ink);
}
.faq details[open] summary::after { content: "\2013"; }
.faq .faq-a { padding: 0 0.25rem 1.25rem; max-width: 46em; color: var(--prose); font-size: 0.95rem; }

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

.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.98; }
.footer-brand { font-family: var(--font-display); font-size: 1.4rem; color: var(--porcelain); font-weight: 600; }
.footer-brand small {
  display: block; font-family: var(--font-body); font-size: 0.56rem; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--gold-lt); margin-top: 0.2rem;
}
.footer-head { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; color: #CBB0AE; 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: #AB9694; max-width: 54em; margin-top: 1.1rem; }
.footer-bottom {
  border-top: 1px solid #43323A; padding-top: 1.25rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.8rem; color: #AB9694;
}

/* --------------------------------------------------------------------------
   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, 245, 239, 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, 30, 35, 0.88); 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: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5); font-size: 0.95rem;
}
.lightbox figcaption { color: #EFDCDF; 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(239, 220, 223, 0.4);
  background: rgba(44, 30, 35, 0.6); color: #F7ECEE; font-size: 1.3rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(168, 80, 90, 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: 700; letter-spacing: 0.09em; text-transform: uppercase;
  padding: 0.28rem 0.65rem; border-radius: 999px;
  background: rgba(44, 30, 35, 0.74); color: #FBF5EF; pointer-events: none;
}

/* --------------------------------------------------------------------------
   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; }
