/* ── The Selma House — propunere de design ─────────────────────────────
   Paletă: negru cald stratificat + auriu tratat ca foiță (foil), nu accent.
   Tipografie: Marcellus (display gravat) / Cormorant Garamond (italic
   romantic) / Jost (corp & UI).                                          */

:root {
  --ink:        #0b0906;   /* fundal principal, negru cald  */
  --panel:      #131009;   /* panouri                        */
  --raised:     #1a150d;   /* carduri ridicate               */
  --gold:       #c6a15b;   /* auriu antic                    */
  --gold-soft:  #e9d5a0;   /* șampanie / highlight foil      */
  --gold-deep:  #8c6f3a;   /* umbră de auriu                 */
  --ivory:      #f1e9da;   /* text principal                 */
  --muted:      #a2957e;   /* text secundar                  */
  --hairline:   rgba(198, 161, 91, .32);
  --hairline-2: rgba(198, 161, 91, .16);
  --foil: linear-gradient(105deg,
      #8c6f3a 0%, #c6a15b 22%, #f3e3b4 44%,
      #c6a15b 58%, #8c6f3a 82%, #c6a15b 100%);
  --serif-display: 'Marcellus', serif;
  --serif-italic:  'Cormorant Garamond', serif;
  --sans:          'Jost', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
}

/* textură fină de hârtie, abia perceptibilă */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.07 0 0 0 0 0.055 0 0 0 0 0.03 0 0 0 .5 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
  z-index: 1;
}

main, header.site, footer.site { position: relative; z-index: 2; }

a { color: var(--gold-soft); text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--gold-deep); color: var(--ivory); }

/* ── utilitare tipografice ─────────────────────────────────────────── */

.foil {
  background: var(--foil);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes sheen { from { background-position: 0% 0; } to { background-position: 220% 0; } }

.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .72rem;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 1.1rem;
}
.eyebrow::before { content: ''; width: 2.6rem; height: 1px; background: var(--hairline); }

h1, h2, h3 { font-family: var(--serif-display); font-weight: 400; }

h2.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: .9rem 0 .4rem;
}

.lede {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--muted);
  font-weight: 500;
}

/* ── bară demo ─────────────────────────────────────────────────────── */

.demo-bar {
  position: relative; z-index: 3;
  text-align: center;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  padding: .55rem 1rem;
  border-bottom: 1px solid var(--hairline-2);
  background: #080604;
}

/* ── header ────────────────────────────────────────────────────────── */

header.site {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: .9rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(11, 9, 6, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--hairline-2);
}

.brand { display: flex; align-items: center; gap: .85rem; color: var(--ivory); }

.crest {
  width: 42px; height: 42px;
  border: 1px solid var(--gold);
  outline: 1px solid var(--hairline-2);
  outline-offset: 3px;
  display: grid; place-items: center;
  font-family: var(--serif-display);
  font-size: 1.05rem;
  color: var(--gold-soft);
  letter-spacing: .05em;
  flex: none;
}

.crest-img {
  width: 44px; height: 44px;
  object-fit: cover;
  border: 1px solid var(--gold);
  outline: 1px solid var(--hairline-2);
  outline-offset: 3px;
  flex: none;
}

.brand-name {
  font-family: var(--serif-display);
  font-size: .95rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  line-height: 1.35;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .4em;
  color: var(--muted);
}

nav.main { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
nav.main a {
  font-size: .78rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .35rem 0;
  border-bottom: 1px solid transparent;
  transition: color .25s, border-color .25s;
}
nav.main a:hover, nav.main a[aria-current="page"] { color: var(--gold-soft); border-bottom-color: var(--gold-deep); }

.lang-toggle {
  display: flex;
  border: 1px solid var(--hairline);
  font-size: .7rem;
  letter-spacing: .18em;
}
.lang-toggle button {
  background: none; border: 0; cursor: pointer;
  color: var(--muted);
  font-family: var(--sans);
  padding: .38rem .75rem;
  letter-spacing: inherit;
}
.lang-toggle button.active { background: var(--gold); color: #171207; font-weight: 500; }

.nav-burger {
  display: none;
  background: none; border: 1px solid var(--hairline);
  color: var(--gold-soft);
  font-size: 1.1rem; line-height: 1;
  padding: .45rem .7rem;
  cursor: pointer;
}

/* ── hero ──────────────────────────────────────────────────────────── */

.hero {
  min-height: calc(100vh - 120px);
  display: grid; place-items: center;
  text-align: center;
  padding: clamp(3rem, 8vw, 6rem) 1.5rem;
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(11, 9, 6, .78), rgba(11, 9, 6, .92) 70%, var(--ink)),
    url('img/cover.jpg');
  background-size: cover;
  background-position: center 25%;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 45% at 50% 38%, rgba(198, 161, 91, .13), transparent 70%),
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(0, 0, 0, .6), transparent 60%);
}
.hero > div { position: relative; }

.hero .hero-logo {
  width: 118px; height: 118px;
  margin: 0 auto 2.2rem;
  display: block;
  object-fit: cover;
  border: 1px solid var(--gold);
  outline: 1px solid var(--hairline-2);
  outline-offset: 7px;
  box-shadow: 0 0 60px rgba(198, 161, 91, .25);
}

.hero h1 {
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  animation: sheen 9s linear infinite;
}
.hero .tagline {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.15rem, 2.6vw, 1.6rem);
  color: var(--muted);
  margin-top: 1.1rem;
  font-weight: 500;
}
.hero .hero-rule {
  width: 5.5rem; height: 1px;
  margin: 2rem auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hero-ctas { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* ── butoane ───────────────────────────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .26em;
  text-transform: uppercase;
  padding: .95rem 2.1rem;
  border: 1px solid var(--gold);
  color: var(--gold-soft);
  background: transparent;
  cursor: pointer;
  transition: background .3s, color .3s, box-shadow .3s;
}
.btn:hover { background: var(--gold); color: #171207; box-shadow: 0 0 32px rgba(198, 161, 91, .25); }
.btn.solid { background: var(--gold); color: #171207; font-weight: 500; }
.btn.solid:hover { background: var(--gold-soft); }
.btn.ghost { border-color: var(--hairline); color: var(--muted); }
.btn.ghost:hover { border-color: var(--gold); color: var(--gold-soft); background: transparent; box-shadow: none; }

/* ── secțiuni ──────────────────────────────────────────────────────── */

section.band { padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 5vw, 4rem); }
section.band.tinted { background: var(--panel); border-block: 1px solid var(--hairline-2); }
.shell { max-width: 1120px; margin: 0 auto; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.copy p + p { margin-top: 1rem; }
.copy p { color: var(--muted); max-width: 58ch; }
.copy strong { color: var(--ivory); font-weight: 400; }

/* ── rame aurii (semnătura) ────────────────────────────────────────── */

.gilt {
  border: 1px solid var(--gold-deep);
  position: relative;
  background: var(--raised);
}
.gilt::before {
  content: '';
  position: absolute; inset: 7px;
  border: 1px solid var(--hairline-2);
  pointer-events: none;
}

/* fotografii reale din săli */
.hall-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  filter: saturate(.92);
}

/* galerie — fotografii de la evenimente */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.9rem, 2vw, 1.5rem);
  margin-top: 2.6rem;
}
.gallery .g-tile { padding: 0; }
.gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: filter .35s, transform .35s;
}
.gallery .g-tile:hover img { filter: brightness(1.08); }

/* substituent foto — până sosesc fotografiile reale */
.photo-slot {
  aspect-ratio: 4 / 3;
  display: grid; place-items: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(198, 161, 91, .08), transparent 65%),
    var(--panel);
}
.photo-slot .ps-inner { padding: 1rem; }
.photo-slot .ps-mark {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--gold);
}
.photo-slot .ps-note {
  margin-top: .4rem;
  font-size: .66rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── carduri săli ──────────────────────────────────────────────────── */

.halls { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 3vw, 2.5rem); margin-top: 2.6rem; }

.hall-card { display: flex; flex-direction: column; }
.hall-card .hall-body { padding: 1.7rem 1.7rem 2rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.hall-card h3 {
  font-size: 1.45rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hall-card .cap {
  font-family: var(--serif-italic);
  font-style: italic;
  color: var(--gold);
  font-size: 1.05rem;
}
.hall-card ul { list-style: none; color: var(--muted); font-size: .92rem; }
.hall-card ul li { padding: .38rem 0; border-bottom: 1px dotted var(--hairline-2); display: flex; justify-content: space-between; gap: 1rem; }
.hall-card ul li:last-child { border-bottom: 0; }
.hall-card .hall-cta { margin-top: auto; padding-top: 1rem; }

/* ── meniu cu dot leaders ──────────────────────────────────────────── */

.menu-card { padding: clamp(1.6rem, 4vw, 2.8rem); }
.menu-cat {
  font-family: var(--serif-display);
  letter-spacing: .3em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold);
  text-align: center;
  margin: 2.1rem 0 1rem;
}
.menu-cat:first-child { margin-top: 0; }
.menu-cat::after {
  content: '';
  display: block;
  width: 3rem; height: 1px;
  margin: .7rem auto 0;
  background: var(--hairline);
}

.menu-row { display: flex; align-items: baseline; gap: .6rem; padding: .5rem 0; }
.menu-row .dish { font-weight: 400; color: var(--ivory); }
.menu-row .dish small { display: block; font-size: .8rem; color: var(--muted); font-weight: 300; }
.menu-row .dots { flex: 1; border-bottom: 1px dotted var(--hairline); transform: translateY(-4px); min-width: 2rem; }
.menu-row .price { font-family: var(--serif-italic); font-size: 1.1rem; color: var(--gold-soft); white-space: nowrap; }

.menu-row .add {
  border: 1px solid var(--hairline);
  background: none;
  color: var(--gold-soft);
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.menu-row .add:hover { background: var(--gold); color: #171207; }

/* ── oferta casei + sloturi foto preparate ─────────────────────────── */

.daily-deal {
  padding: 1.8rem 1.5rem;
  text-align: center;
}
.daily-deal .dd-label {
  font-size: .66rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
}
.daily-deal .dd-text {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--ivory);
  margin-top: .6rem;
}
.daily-deal .dd-price {
  font-family: var(--serif-italic);
  font-size: 2.6rem;
  line-height: 1.2;
  margin-top: .4rem;
  animation: sheen 9s linear infinite;
}

.dish-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.dish-slots .ds {
  aspect-ratio: 1;
  display: grid; place-items: center;
  text-align: center;
  padding: 1rem;
  background:
    radial-gradient(ellipse at 50% 25%, rgba(198, 161, 91, .09), transparent 65%),
    var(--panel);
}
.dish-slots .ds-name {
  display: block;
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
}
.dish-slots .ds-note {
  display: block;
  margin-top: .5rem;
  font-size: .58rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 680px) {
  .dish-slots { grid-template-columns: 1fr 1fr; }
}

/* ── booking (invitația) ───────────────────────────────────────────── */

.booking-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
  margin-top: 2.4rem;
}

.form-card { padding: clamp(1.6rem, 4vw, 2.4rem); }

.field { margin-bottom: 1.15rem; }
.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.field input, .field select {
  width: 100%;
  background: var(--ink);
  border: 1px solid var(--hairline-2);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  font-size: .95rem;
  padding: .75rem .9rem;
  letter-spacing: .03em;
  transition: border-color .25s;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field input[type="date"] { color-scheme: dark; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hall-pick { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.15rem; }
.hall-pick .pick {
  border: 1px solid var(--hairline-2);
  padding: 0;
  cursor: pointer;
  text-align: center;
  transition: border-color .25s, background .25s;
  background: var(--ink);
  overflow: hidden;
}
.hall-pick .pick-img {
  width: 100%;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  display: block;
  filter: saturate(.9);
  transition: filter .3s;
}
.hall-pick .pick.selected .pick-img { filter: saturate(1.05) brightness(1.05); }
.hall-pick .pick-body { padding: .9rem 1rem 1.1rem; }
.hall-pick .pick h4 { font-family: var(--serif-display); font-weight: 400; letter-spacing: .12em; text-transform: uppercase; font-size: .92rem; }
.hall-pick .pick p { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.hall-pick .pick.selected { border-color: var(--gold); background: rgba(198, 161, 91, .07); }
.hall-pick .pick.selected h4 { color: var(--gold-soft); }

/* invitația-sumar */
.invite {
  padding: 2rem 1.8rem;
  text-align: center;
  position: sticky; top: 90px;
}
.invite .inv-head {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
}
.invite .inv-line { border: 0; height: 1px; background: var(--hairline-2); margin: 1.2rem 0; }
.invite dl { text-align: left; }
.invite dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; font-size: .92rem; }
.invite dt { color: var(--muted); letter-spacing: .08em; }
.invite dd { color: var(--ivory); text-align: right; }
.invite .inv-deposit {
  margin: 1.2rem 0 1.4rem;
  padding: 1rem;
  border: 1px solid var(--gold-deep);
}
.invite .inv-deposit .lbl { font-size: .66rem; letter-spacing: .32em; text-transform: uppercase; color: var(--muted); }
.invite .inv-deposit .amt {
  font-family: var(--serif-italic);
  font-size: 2.3rem;
  line-height: 1.2;
  animation: sheen 9s linear infinite;
}
.invite .inv-note { font-size: .78rem; color: var(--muted); margin-top: 1rem; }

/* confirmare demo */
.confirm-veil {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(8, 6, 4, .85);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 1.5rem;
}
.confirm-veil.open { display: grid; }
.confirm-card { max-width: 440px; width: 100%; padding: 2.5rem 2rem; text-align: center; }
.confirm-card .ok-mark {
  width: 58px; height: 58px;
  margin: 0 auto 1.4rem;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
  display: grid; place-items: center;
  color: var(--gold-soft);
  font-size: 1.4rem;
}
.confirm-card .ok-mark span { transform: rotate(-45deg); }
.confirm-card h3 { letter-spacing: .16em; text-transform: uppercase; font-size: 1.15rem; margin-bottom: .8rem; }
.confirm-card p { color: var(--muted); font-size: .92rem; }
.confirm-card .btn { margin-top: 1.6rem; }

/* ── marquee tipuri de evenimente ──────────────────────────────────── */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--hairline-2);
  background: #080604;
  padding: .85rem 0;
}
.marquee .mq-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: mq 28s linear infinite;
}
.marquee span {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.marquee span::after { content: '✦'; margin-left: 3rem; font-size: .7rem; color: var(--gold-deep); font-style: normal; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ── ornament între secțiuni ───────────────────────────────────────── */

.flourish {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem;
  padding: .4rem 0;
  color: var(--gold-deep);
}
.flourish::before, .flourish::after {
  content: '';
  width: min(180px, 26vw); height: 1px;
  background: linear-gradient(90deg, transparent, var(--hairline));
}
.flourish::after { background: linear-gradient(90deg, var(--hairline), transparent); }
.flourish svg { width: 34px; height: 22px; }

/* ── video placeholder ─────────────────────────────────────────────── */

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  display: grid; place-items: center;
  text-align: center;
  background:
    linear-gradient(rgba(11, 9, 6, .55), rgba(11, 9, 6, .78)),
    url('img/cover.jpg') center / cover;
  cursor: pointer;
}
.video-frame .play-ring {
  width: 92px; height: 92px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  outline: 1px solid var(--hairline-2);
  outline-offset: 7px;
  display: grid; place-items: center;
  color: var(--gold-soft);
  font-size: 1.5rem;
  padding-left: 6px;
  transition: transform .35s, box-shadow .35s;
  background: rgba(11, 9, 6, .45);
}
.video-frame:hover .play-ring { transform: scale(1.07); box-shadow: 0 0 50px rgba(198, 161, 91, .35); }
.video-frame .vf-note {
  position: absolute;
  bottom: 1.2rem; left: 0; right: 0;
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── bandă foto full-width cu citat ────────────────────────────────── */

.photo-band {
  position: relative;
  min-height: 46vh;
  display: grid; place-items: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 7rem) 1.5rem;
  background:
    linear-gradient(rgba(11, 9, 6, .68), rgba(11, 9, 6, .82)),
    url('img/g4.jpg') center 35% / cover;
  border-block: 1px solid var(--hairline-2);
}
.photo-band blockquote {
  font-family: var(--serif-italic);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.2rem);
  max-width: 26ch;
  color: var(--ivory);
  line-height: 1.4;
}
.photo-band cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── hartă ─────────────────────────────────────────────────────────── */

.map-frame { padding: 0; overflow: hidden; }
.map-frame iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(.85) invert(.92) hue-rotate(185deg) saturate(.4) brightness(.9);
}

/* ── reveal la scroll ──────────────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* hover pe carduri */
.hall-card, .partner, .g-tile { transition: transform .35s, box-shadow .35s; }
.hall-card:hover, .partner:hover { transform: translateY(-5px); box-shadow: 0 18px 50px rgba(0, 0, 0, .5), 0 0 0 1px var(--gold-deep); }

/* ── ce include salonul (din bannerul casei) ───────────────────────── */

.includes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1px;
  background: var(--hairline-2);
  border: 1px solid var(--hairline-2);
  margin-top: 2.4rem;
}
.includes > div {
  background: var(--ink);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.includes .inc-icon { color: var(--gold); margin-bottom: .7rem; }
.includes .inc-icon svg { width: 30px; height: 30px; }
.includes .inc-name {
  font-family: var(--serif-display);
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ivory);
}
.includes .inc-note { font-size: .78rem; color: var(--muted); margin-top: .35rem; }

/* licențe — semn de încredere */
.licences { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2.2rem; }
.licences span {
  border: 1px solid var(--gold-deep);
  padding: .6rem 1.3rem;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

/* ── pachete foto/video ────────────────────────────────────────────── */

.packages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
  margin-top: 2.8rem;
  align-items: stretch;
}
.pkg { padding: 2rem 1.6rem; display: flex; flex-direction: column; gap: .55rem; }
.pkg.featured { border-color: var(--gold); box-shadow: 0 0 50px rgba(198, 161, 91, .12); }
.pkg .pkg-name {
  font-family: var(--serif-display);
  font-size: 1.45rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
}
.pkg.featured .pkg-name { color: var(--gold-soft); }
.pkg .pkg-price {
  font-family: var(--serif-italic);
  font-size: 2.3rem;
  text-align: center;
  color: var(--gold-soft);
  line-height: 1.1;
}
.pkg .pkg-rule { height: 1px; background: var(--hairline); margin: .3rem auto 1rem; width: 3rem; }
.pkg ul { list-style: none; font-size: .88rem; color: var(--muted); }
.pkg ul li { padding: .4rem 0 .4rem 1.3rem; position: relative; }
.pkg ul li::before {
  content: '✦';
  position: absolute; left: 0; top: .45rem;
  color: var(--gold-deep);
  font-size: .68rem;
}
.pkg .pkg-extra {
  margin-top: auto;
  padding-top: 1.1rem;
  border-top: 1px solid var(--hairline-2);
  font-size: .76rem;
  color: #6f6350;
}
.pkg .pkg-extra strong {
  display: block;
  font-weight: 400;
  font-size: .62rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: .5rem;
}
.pkg .pkg-extra span { display: block; padding: .15rem 0; }

/* ── ursitoare: basm ───────────────────────────────────────────────── */

.urs-hero {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.urs-hero img { width: 100%; display: block; }

.urs-gallery {
  columns: 3;
  column-gap: clamp(.9rem, 2vw, 1.4rem);
  margin-top: 2.6rem;
}
.urs-gallery figure {
  break-inside: avoid;
  margin-bottom: clamp(.9rem, 2vw, 1.4rem);
  padding: 0;
}
.urs-gallery img { width: 100%; display: block; transition: filter .35s; }
.urs-gallery figure:hover img { filter: brightness(1.07); }

/* ── afiș eveniment ────────────────────────────────────────────────── */

.poster-row {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
  margin-top: 2.4rem;
}
.poster-row img { width: 100%; display: block; }
.event-meta { list-style: none; margin-top: 1.4rem; }
.event-meta li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px dotted var(--hairline-2);
  font-size: .95rem;
}
.event-meta li span:first-child { color: var(--muted); letter-spacing: .1em; }
.event-meta li span:last-child { color: var(--gold-soft); font-family: var(--serif-italic); font-size: 1.12rem; }

@media (max-width: 900px) {
  .packages { grid-template-columns: 1fr; }
  .urs-hero, .poster-row { grid-template-columns: 1fr; }
  .urs-gallery { columns: 2; }
}
@media (max-width: 680px) {
  .urs-gallery { columns: 1; }
}

/* ── colaboratori ──────────────────────────────────────────────────── */

.partners { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2.6rem; }
.partner {
  padding: 2.4rem 1.5rem;
  text-align: center;
  background:
    linear-gradient(rgba(11, 9, 6, .66), rgba(11, 9, 6, .88)),
    var(--card-bg, none) center / cover;
  transition: transform .35s, box-shadow .35s, background-color .35s;
}
.partner h3, .partner p { text-shadow: 0 1px 8px rgba(0, 0, 0, .8); }
.partner .p-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border: 1px solid var(--hairline);
  outline: 1px solid var(--hairline-2);
  outline-offset: 4px;
  display: grid; place-items: center;
  color: var(--gold);
  background: rgba(11, 9, 6, .55);
}
.partner .p-icon svg { width: 38px; height: 38px; }
.partner h3 { font-size: 1rem; letter-spacing: .18em; text-transform: uppercase; }
.partner p { font-size: .85rem; color: var(--muted); margin-top: .5rem; }

/* ── coș comenzi (demo) ────────────────────────────────────────────── */

.cart-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(11, 9, 6, .96);
  border-top: 1px solid var(--gold-deep);
  padding: .85rem clamp(1.2rem, 4vw, 3rem);
  display: none;
  align-items: center; justify-content: space-between; gap: 1rem;
}
.cart-bar.visible { display: flex; }
.cart-bar .cart-info { font-size: .85rem; color: var(--muted); letter-spacing: .06em; }
.cart-bar .cart-total { font-family: var(--serif-italic); font-size: 1.3rem; color: var(--gold-soft); }

/* ── program / info bar ────────────────────────────────────────────── */

.info-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--hairline-2);
  margin-top: 2.4rem;
}
.info-strip > div { padding: 1.5rem; text-align: center; }
.info-strip > div + div { border-left: 1px solid var(--hairline-2); }
.info-strip .k { font-size: .64rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted); }
.info-strip .v { font-family: var(--serif-italic); font-style: italic; font-size: 1.2rem; color: var(--gold-soft); margin-top: .4rem; }

/* ── footer ────────────────────────────────────────────────────────── */

footer.site {
  border-top: 1px solid var(--hairline-2);
  background: #080604;
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.2rem, 5vw, 4rem) 2rem;
}
.foot-grid {
  max-width: 1120px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
}
.foot-grid h4 {
  font-family: var(--sans);
  font-weight: 400;
  font-size: .68rem;
  letter-spacing: .34em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.foot-grid p, .foot-grid a { font-size: .9rem; color: var(--muted); }
.foot-grid ul { list-style: none; }
.foot-grid li { padding: .28rem 0; }
.foot-grid a:hover { color: var(--gold-soft); }
.foot-note {
  max-width: 1120px; margin: 2.5rem auto 0;
  padding-top: 1.4rem;
  border-top: 1px solid var(--hairline-2);
  font-size: .72rem;
  color: #5d5342;
  letter-spacing: .12em;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}

/* ── pagini interioare: hero mic ───────────────────────────────────── */

.page-head {
  text-align: center;
  padding: clamp(3rem, 7vw, 5rem) 1.5rem clamp(2rem, 5vw, 3.5rem);
}
.page-head .eyebrow { justify-content: center; }
.page-head .eyebrow::after { content: ''; width: 2.6rem; height: 1px; background: var(--hairline); }
.page-head h1 {
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.page-head .lede { margin-top: .8rem; }

/* ── focus & motion ────────────────────────────────────────────────── */

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1, .invite .inv-deposit .amt { animation: none; }
  * { transition: none !important; }
}

/* ── responsive ────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .split, .booking-grid { grid-template-columns: 1fr; }
  .invite { position: static; }
  .partners { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  nav.main {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #0b0906;
    border-bottom: 1px solid var(--hairline-2);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
  }
  nav.main.open { display: flex; }
  .nav-burger { display: block; }
  .halls, .hall-pick, .field-row, .partners { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .info-strip > div + div { border-left: 0; border-top: 1px solid var(--hairline-2); }
  .foot-grid { grid-template-columns: 1fr; }
}

/* ── reel vertical (filmarea reală din sală) ───────────────────────── */

.reel-row {
  display: grid;
  grid-template-columns: minmax(0, 380px) minmax(0, 1fr);
  gap: clamp(1.8rem, 4vw, 3.4rem);
  align-items: center;
  margin-top: 2.4rem;
}
.reel-frame { padding: 7px; }
.reel-frame video {
  width: 100%;
  aspect-ratio: 474 / 850;
  display: block;
  object-fit: cover;
  background: var(--panel);
}
.reel-cap {
  margin-top: .8rem;
  text-align: center;
  font-size: .64rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--muted);
}
@media (max-width: 820px) {
  .reel-row { grid-template-columns: 1fr; }
  .reel-frame { max-width: 340px; margin: 0 auto; }
}

@media (max-width: 760px) {
  .info-strip[style*="repeat(4"] { grid-template-columns: 1fr 1fr !important; }
}

/* stare goală pe pagina de evenimente */
.empty-events {
  text-align: center; padding: 4rem 1rem;
  font-family: var(--serif-italic); font-style: italic;
  font-size: 1.3rem; color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════════
   TEMA „VIU" (feedback proprietar 07.09): contrast mai viu, scris din
   condei, benzi-anunț, animații. Suprascrie variabilele de bază.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --ink:        #140a0d;   /* vin-negru, mai cald decât negrul pur   */
  --panel:      #1d0f14;
  --raised:     #281419;
  --gold:       #e0b54a;   /* auriu mai luminos                       */
  --gold-soft:  #ffe7a6;
  --gold-deep:  #a8843a;
  --ivory:      #fff5e1;
  --muted:      #c9b58f;
  --wine:       #7a1f2e;   /* accent viu: vin/burgund                 */
  --wine-2:     #b0263c;
  --emerald:    #1e8a62;
  --hairline:   rgba(224, 181, 74, .42);
  --hairline-2: rgba(224, 181, 74, .22);
  --script:     'Great Vibes', 'Cormorant Garamond', cursive;
}
body::before { opacity: .22; }
section.band.tinted { background: linear-gradient(180deg, var(--panel), #22101a); }
.hero { background-image: linear-gradient(rgba(20,10,13,.62), rgba(20,10,13,.85) 70%, var(--ink)), url('img/cover.jpg'); }
.hero::before { background: radial-gradient(ellipse 60% 45% at 50% 38%, rgba(224,181,74,.22), transparent 70%), radial-gradient(ellipse 120% 80% at 50% 110%, rgba(122,31,46,.55), transparent 60%); }
.photo-band { background-blend-mode: normal; }
.photo-band blockquote { text-shadow: 0 2px 18px rgba(0,0,0,.8); }

/* scris „din condei" */
.script { font-family: var(--script); font-weight: 400; letter-spacing: 0; text-transform: none; }
.hero h1.script { font-size: clamp(3.2rem, 9vw, 6.4rem); line-height: 1.05; letter-spacing: 0; text-transform: none; }
.hero .tagline { font-family: var(--serif-display); font-style: normal; letter-spacing: .28em; text-transform: uppercase; font-size: clamp(.8rem, 1.6vw, 1rem); color: var(--gold); }
h2.section-title .script { display: block; font-size: 1.35em; color: var(--gold-soft); margin-bottom: .1em; }
.eyebrow.script { font-family: var(--script); font-size: 1.5rem; letter-spacing: 0; text-transform: none; color: var(--gold-soft); }
.eyebrow.script::before { display: none; }

/* logo mai mare, stânga sus */
.crest-img { width: 60px; height: 60px; outline-offset: 4px; }
.brand-name { font-size: 1.05rem; }
.brand-name small { font-size: .62rem; }

/* stema (interimar: cea de pe peretele sălii) */
.hero .hero-crest {
  width: min(300px, 70vw); margin: 0 auto 1.6rem; display: block;
  border: 1px solid var(--gold); outline: 1px solid var(--hairline-2); outline-offset: 8px;
  box-shadow: 0 0 80px rgba(224,181,74,.35), 0 20px 60px rgba(0,0,0,.6);
  animation: crest-in 1.1s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes crest-in { from { opacity: 0; transform: translateY(24px) scale(.96); } to { opacity: 1; transform: none; } }
.hero h1, .hero .tagline, .hero .hero-rule, .hero-ctas { animation: rise .9s cubic-bezier(.2,.8,.2,1) both; }
.hero h1 { animation-delay: .25s; } .hero .tagline { animation-delay: .45s; } .hero .hero-rule { animation-delay: .6s; } .hero-ctas { animation-delay: .75s; }
@keyframes rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ── benzi-anunț ── */
.ticker { overflow: hidden; border-block: 1px solid var(--hairline-2); background: linear-gradient(90deg, #2a0f18, var(--wine), #2a0f18); padding: .7rem 0; position: relative; }
.ticker .mq-track { display: flex; gap: 2.6rem; width: max-content; animation: mq 26s linear infinite; }
.ticker span { font-family: var(--serif-display); font-size: .82rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); white-space: nowrap; }
.ticker span::after { content: '✦'; margin-left: 2.6rem; color: var(--gold); }
.ticker.alert { background: linear-gradient(90deg, #4a0d17, var(--wine-2), #4a0d17); }
.ticker.alert span { color: #fff; }
.ticker.slow .mq-track { animation-duration: 40s; }
.ticker.fast .mq-track { animation-duration: 18s; }
.ticker.rev .mq-track { animation-direction: reverse; }
.ticker:hover .mq-track { animation-play-state: paused; }
.marquee { background: linear-gradient(90deg, #1a0b10, #2a1220, #1a0b10); }
.marquee span { color: var(--gold-soft); }

/* insigna LIVE */
.badge-live { display: inline-flex; align-items: center; gap: .45rem; font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: #fff; background: var(--wine-2); padding: .3rem .7rem .3rem .55rem; }
.badge-live::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: #ff6b6b; box-shadow: 0 0 0 0 rgba(255,107,107,.7); animation: blink 1.4s infinite; }
@keyframes blink { 0% { box-shadow: 0 0 0 0 rgba(255,107,107,.7); } 70% { box-shadow: 0 0 0 8px rgba(255,107,107,0); } 100% { box-shadow: 0 0 0 0 rgba(255,107,107,0); } }

/* butoane care pulsează, carduri care trăiesc */
.btn.solid { background: linear-gradient(135deg, var(--gold), #f3d27a, var(--gold)); background-size: 200% 100%; animation: pulse-gold 3.2s ease-in-out infinite; box-shadow: 0 0 0 0 rgba(224,181,74,.45); }
@keyframes pulse-gold { 0%,100% { box-shadow: 0 0 0 0 rgba(224,181,74,.45); background-position: 0% 0; } 50% { box-shadow: 0 0 34px 4px rgba(224,181,74,.28); background-position: 100% 0; } }
.gilt { position: relative; overflow: hidden; }
.gilt::after { content: ''; position: absolute; top: -60%; left: -80%; width: 60%; height: 220%; background: linear-gradient(105deg, transparent, rgba(255,231,166,.18), transparent); transform: rotate(12deg); transition: left .7s ease; pointer-events: none; }
.gilt:hover::after { left: 130%; }
.hall-card:hover, .partner:hover, .g-tile:hover, .night:hover, .tier:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 22px 60px rgba(0,0,0,.55), 0 0 0 1px var(--gold); }
.g-tile img { transition: transform .5s; } .g-tile:hover img { transform: scale(1.06); }

/* scântei aurii (CSS pur) */
.sparkles { position: fixed; inset: 0; pointer-events: none; z-index: 1; overflow: hidden; }
.sparkles i { position: absolute; bottom: -10px; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-soft); opacity: 0; filter: blur(.3px); animation: float 12s linear infinite; }
@keyframes float { 0% { transform: translateY(0) scale(.6); opacity: 0; } 10% { opacity: .9; } 90% { opacity: .3; } 100% { transform: translateY(-110vh) scale(1.3); opacity: 0; } }

/* ── serile săptămânii ── */
.nights { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.2rem; margin-top: 2.4rem; }
.night { padding: 1.6rem 1.4rem; transition: transform .35s, box-shadow .35s; background: linear-gradient(160deg, var(--raised), #1a0b10); }
.night .days { font-family: var(--script); font-size: 2rem; color: var(--gold-soft); line-height: 1; }
.night h3 { font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; margin-top: .6rem; }
.night p { color: var(--muted); font-size: .92rem; margin-top: .5rem; }

/* ── avertisment mare (fumat) ── */
.notice-big { text-align: center; padding: clamp(1.6rem, 4vw, 2.6rem) 1.2rem; border-block: 2px solid var(--gold); background: linear-gradient(90deg, #2a0f18, var(--wine), #2a0f18); }
.notice-big .t { font-family: var(--serif-display); font-size: clamp(1.3rem, 3.4vw, 2.2rem); letter-spacing: .14em; text-transform: uppercase; color: #fff; }
.notice-big .s { font-family: var(--script); font-size: clamp(1.4rem, 3vw, 2rem); color: var(--gold-soft); margin-top: .3rem; }

/* ── meniuri evenimente (Standard / Bronz / Gold) ── */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: 2.6rem; align-items: stretch; }
.tier { padding: 2rem 1.6rem; display: flex; flex-direction: column; gap: .6rem; transition: transform .35s, box-shadow .35s; }
.tier.gold { border-color: var(--gold); box-shadow: 0 0 60px rgba(224,181,74,.16); }
.tier .name { font-family: var(--script); font-size: 2.4rem; text-align: center; color: var(--gold-soft); line-height: 1; }
.tier .tag { text-align: center; color: var(--muted); font-style: italic; font-family: var(--serif-italic); font-size: 1.02rem; }
.tier .pp { text-align: center; font-family: var(--serif-italic); font-size: 1.8rem; color: var(--gold-soft); margin: .4rem 0 .2rem; }
.tier .pp small { display: block; font-family: var(--sans); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); }
.tier h4 { font-family: var(--sans); font-weight: 400; font-size: .64rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold); margin-top: 1rem; padding-bottom: .35rem; border-bottom: 1px solid var(--hairline-2); }
.tier ul { list-style: none; color: var(--ivory); font-size: .92rem; }
.tier ul li { padding: .32rem 0; border-bottom: 1px dotted rgba(224,181,74,.14); }
.tier .todo { color: var(--muted); font-style: italic; }
.extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1px; background: var(--hairline-2); border: 1px solid var(--hairline-2); margin-top: 2rem; }
.extras > div { background: var(--ink); padding: 1.2rem 1.1rem; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.extras .n { color: var(--ivory); } .extras .n small { display: block; color: var(--muted); font-size: .78rem; }
.extras .p { font-family: var(--serif-italic); color: var(--gold-soft); white-space: nowrap; }

/* ── rezervare: meniu + extra + dorințe ── */
.tier-pick { display: grid; grid-template-columns: repeat(3, 1fr); gap: .8rem; margin-bottom: 1.15rem; }
.tier-pick .pick { padding: .9rem .6rem; }
.tier-pick .pick h4 { font-family: var(--script); font-size: 1.5rem; letter-spacing: 0; text-transform: none; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem .9rem; margin-bottom: 1.15rem; }
.checks label { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ivory); cursor: pointer; padding: .5rem .6rem; border: 1px solid var(--hairline-2); background: var(--ink); }
.checks input { accent-color: var(--gold); width: 18px; height: 18px; }
.lastmin { border: 2px solid var(--gold); padding: clamp(1.6rem, 4vw, 2.4rem); background: linear-gradient(135deg, rgba(122,31,46,.35), rgba(20,10,13,.2)); }
.lastmin .k { font-family: var(--script); font-size: 2.6rem; color: var(--gold-soft); line-height: 1; }

/* muzică de fundal */
.music-btn { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 70; width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold); background: rgba(20,10,13,.92); color: var(--gold-soft); font-size: 1.3rem; cursor: pointer; display: none; place-items: center; box-shadow: 0 8px 30px rgba(0,0,0,.5); }
.music-btn.show { display: grid; }
.music-btn.on { animation: pulse-gold 2s infinite; }
.music-btn .bars { display: none; gap: 3px; align-items: flex-end; height: 16px; }
.music-btn.on .bars { display: flex; } .music-btn.on .note { display: none; }
.music-btn .bars i { width: 3px; background: var(--gold-soft); animation: eq .8s ease-in-out infinite; }
.music-btn .bars i:nth-child(2) { animation-delay: .2s; } .music-btn .bars i:nth-child(3) { animation-delay: .4s; }
@keyframes eq { 0%,100% { height: 5px; } 50% { height: 16px; } }

@media (max-width: 860px) { .tiers { grid-template-columns: 1fr; } .tier-pick { grid-template-columns: 1fr; } .checks { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .sparkles, .ticker .mq-track, .btn.solid, .gilt::after, .badge-live::before { animation: none !important; } }
.hero h1.script { color: var(--gold-soft); text-shadow: 0 2px 30px rgba(224,181,74,.35); }
.tier-pick .pick { border: 1px solid var(--hairline-2); background: var(--ink); cursor: pointer; text-align: center; transition: border-color .25s, background .25s; }
.tier-pick .pick.selected { border-color: var(--gold); background: rgba(224,181,74,.09); }
.tier-pick .pick p { font-size: .76rem; color: var(--muted); margin-top: .2rem; }
/* navigație compactă: 8 linkuri pe un rând */
nav.main { gap: clamp(.7rem, 1.6vw, 1.5rem); }
nav.main a { font-size: .7rem; letter-spacing: .16em; white-space: nowrap; }
@media (max-width: 1180px) { nav.main a { font-size: .64rem; letter-spacing: .1em; } }
/* grile fără celule goale colorate: linii pe celule, nu pe container */
.extras, .includes { gap: .6rem; background: none; border: 0; }
.extras > div, .includes > div { border: 1px solid var(--hairline-2); }
.checks label { text-transform: none; letter-spacing: 0; font-size: .92rem; margin: 0; color: var(--ivory); }
.checks label i { font-style: italic; color: var(--muted); }

/* ══════════════════════════════════════════════════════════════════════
   v7 — restructurare după brieful lui Adrian (07.09.2026)
   Mai mult aer, fotografii mari, mai puțin text, două drumuri clare.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Hero cu fotografii care respiră (Ken Burns), fără video greu pe mobil ── */
.hero-full {
  position: relative; min-height: min(92vh, 780px);
  display: grid; place-items: center; text-align: center;
  overflow: hidden; padding: clamp(4rem, 12vh, 8rem) 1.2rem clamp(3rem, 8vh, 5rem);
  border-bottom: 1px solid var(--hairline-2);
}
.hero-full .stage { position: absolute; inset: 0; z-index: 0; }
.hero-full .stage img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; animation: heroFade 28s infinite; will-change: opacity, transform;
}
.hero-full .stage img:nth-child(1) { animation-delay: 0s; }
.hero-full .stage img:nth-child(2) { animation-delay: 7s; }
.hero-full .stage img:nth-child(3) { animation-delay: 14s; }
.hero-full .stage img:nth-child(4) { animation-delay: 21s; }
/* până se încarcă restul cadrelor, primul rămâne pe ecran */
.hero-full .stage.solo img:not(:first-child) { animation: none; opacity: 0; }
.hero-full .stage.solo img:first-child { animation: none; opacity: 1; }
@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.04); }
  6%   { opacity: 1; }
  25%  { opacity: 1; transform: scale(1.12); }
  31%  { opacity: 0; transform: scale(1.13); }
  100% { opacity: 0; }
}
.hero-full .veil {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 50% 42%, rgba(20,10,13,.30) 0%, rgba(15,8,10,.72) 62%, rgba(11,6,8,.92) 100%),
    linear-gradient(to bottom, rgba(11,6,8,.72) 0%, rgba(11,6,8,.10) 34%, rgba(11,6,8,.86) 100%);
}
.hero-full .inner { position: relative; z-index: 2; max-width: 900px; }
.hero-full .kicker {
  font-family: var(--sans); font-size: clamp(.62rem, 1.5vw, .74rem);
  letter-spacing: .42em; text-transform: uppercase; color: var(--gold-soft);
  margin-bottom: clamp(1rem, 3vh, 1.8rem);
}
.hero-full h1 {
  font-family: var(--script, 'Great Vibes', cursive);
  font-size: clamp(3.6rem, 12vw, 8.4rem); line-height: .92; letter-spacing: 0;
  text-transform: none; color: var(--ivory);
  text-shadow: 0 4px 40px rgba(0,0,0,.65), 0 0 90px rgba(198,161,91,.22);
}
.hero-full .sub {
  margin-top: clamp(1rem, 2.6vh, 1.6rem);
  font-family: var(--sans); font-weight: 300;
  font-size: clamp(.72rem, 2vw, .88rem); letter-spacing: .3em; text-transform: uppercase;
  color: var(--ivory); opacity: .92;
}
.hero-full .kinds {
  margin-top: .9rem; font-family: var(--serif-italic); font-style: italic;
  font-size: clamp(1rem, 2.8vw, 1.35rem); color: var(--gold-soft);
}
.hero-full .hero-ctas { margin-top: clamp(1.8rem, 5vh, 3rem); justify-content: center; }
.hero-full .btn { min-width: 210px; }
.hero-scroll {
  position: absolute; bottom: 1.3rem; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .58rem; letter-spacing: .34em; text-transform: uppercase; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.hero-scroll::after { content: ''; width: 1px; height: 26px; background: linear-gradient(var(--gold), transparent); }
@media (prefers-reduced-motion: reduce) {
  .hero-full .stage img { animation: none; opacity: 0; }
  .hero-full .stage img:first-child { opacity: 1; }
}

/* ── Două drumuri: masă sau eveniment ── */
.two-ways { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.4vw, 1.8rem); }
.way {
  position: relative; min-height: clamp(240px, 34vw, 380px); display: flex; align-items: flex-end;
  padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--hairline-2); overflow: hidden;
  background-size: cover; background-position: center; text-decoration: none;
  transition: border-color .35s ease;
}
.way::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,7,.94) 8%, rgba(10,5,7,.38) 62%, rgba(10,5,7,.22) 100%);
  transition: background .4s ease;
}
.way:hover { border-color: var(--gold); }
.way:hover::before { background: linear-gradient(to top, rgba(10,5,7,.90) 8%, rgba(70,20,30,.32) 62%, rgba(10,5,7,.18) 100%); }
.way .way-body { position: relative; z-index: 1; }
.way h3 { font-size: clamp(1.15rem, 2.6vw, 1.6rem); letter-spacing: .1em; text-transform: uppercase; color: var(--ivory); }
.way p { margin-top: .5rem; color: var(--muted); font-size: .92rem; max-width: 34ch; }
.way .way-go {
  display: inline-flex; align-items: center; gap: .5rem; margin-top: 1rem;
  font-family: var(--sans); font-size: .66rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold-soft);
}
.way .way-go::after { content: '→'; transition: transform .3s ease; }
.way:hover .way-go::after { transform: translateX(5px); }

/* ── Sălile, prezentate mare ── */
.hall-showcase { display: grid; gap: clamp(2.4rem, 6vw, 4.5rem); }
.hall-feature { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(1.4rem, 3.4vw, 3rem); align-items: center; }
.hall-feature:nth-child(even) .hall-shot { order: 2; }
.hall-shot { position: relative; overflow: hidden; border: 1px solid var(--hairline-2); }
.hall-shot img { width: 100%; height: clamp(260px, 42vw, 460px); object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.hall-feature:hover .hall-shot img { transform: scale(1.05); }
.hall-shot .cap-badge {
  position: absolute; top: 1rem; left: 1rem; padding: .45rem .9rem;
  background: rgba(11,6,8,.82); border: 1px solid var(--gold);
  font-family: var(--sans); font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-soft);
}
.hall-feature h3 { font-size: clamp(1.6rem, 4vw, 2.4rem); letter-spacing: .12em; text-transform: uppercase; }
.hall-feature .cap-line { margin-top: .5rem; font-family: var(--serif-italic); font-style: italic; font-size: 1.3rem; color: var(--gold); }
.hall-feature p { margin-top: 1rem; color: var(--muted); }
.hall-feature .chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.hall-feature .chips span {
  padding: .35rem .8rem; border: 1px solid var(--hairline-2); font-size: .64rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.hall-feature .btn { margin-top: 1.6rem; }

/* ── Casetele tipurilor de evenimente ── */
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: clamp(1rem, 2vw, 1.4rem); }
.type-card {
  position: relative; min-height: 300px; display: flex; align-items: flex-end;
  padding: 1.4rem; border: 1px solid var(--hairline-2); overflow: hidden; text-decoration: none;
  background: var(--panel) center/cover no-repeat; transition: border-color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.type-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,4,6,.95) 6%, rgba(9,4,6,.42) 58%, rgba(9,4,6,.18) 100%);
  transition: background .4s ease;
}
.type-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.type-card:hover::before { background: linear-gradient(to top, rgba(9,4,6,.92) 6%, rgba(88,24,38,.36) 58%, rgba(9,4,6,.14) 100%); }
.type-card .tc-body { position: relative; z-index: 1; width: 100%; }
.type-card h3 { font-size: 1.05rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ivory); }
.type-card p { margin-top: .4rem; font-family: var(--serif-italic); font-style: italic; color: var(--gold-soft); font-size: 1rem; }
.type-card .tc-go { display: block; margin-top: .9rem; font-size: .6rem; letter-spacing: .28em; text-transform: uppercase; color: var(--muted); }
.type-card:hover .tc-go { color: var(--gold-soft); }

/* ── Recenzii ── */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.review { padding: 1.6rem 1.5rem; border: 1px solid var(--hairline-2); background: var(--panel); }
.review .stars { color: var(--gold); letter-spacing: .22em; font-size: .95rem; }
.review blockquote { margin: .9rem 0 0; font-family: var(--serif-italic); font-style: italic; font-size: 1.12rem; line-height: 1.55; color: var(--ivory); }
.review cite { display: block; margin-top: .9rem; font-style: normal; font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.rating-head { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.8rem; }
.rating-head .score { font-family: var(--serif-italic); font-style: italic; font-size: 3rem; color: var(--gold); line-height: 1; }
.rating-head .meta { text-align: left; font-size: .8rem; color: var(--muted); }

/* ── Program de funcționare ── */
.hours-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.hours-card { padding: 1.6rem 1.5rem; border: 1px solid var(--hairline-2); background: var(--panel); }
.hours-card h3 { font-size: .74rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.hours-card dl { margin: 0; }
.hours-card dl div { display: flex; justify-content: space-between; gap: 1rem; padding: .5rem 0; border-bottom: 1px dotted var(--hairline-2); }
.hours-card dl div:last-child { border-bottom: 0; }
.hours-card dt { color: var(--muted); font-size: .9rem; }
.hours-card dd { margin: 0; color: var(--ivory); font-family: var(--serif-italic); font-style: italic; font-size: 1.05rem; }
.hours-card .note { margin-top: 1rem; font-size: .82rem; color: var(--muted); line-height: 1.6; }

/* ── Reguli / termeni ── */
.rules { display: grid; gap: 1rem; }
.rule {
  display: grid; grid-template-columns: 56px minmax(0,1fr); gap: 1.2rem; align-items: start;
  padding: 1.4rem 1.5rem; border: 1px solid var(--hairline-2); background: var(--panel);
}
.rule .r-ico { font-size: 1.6rem; line-height: 1; text-align: center; }
.rule h3 { font-size: .82rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); }
.rule p { margin-top: .6rem; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.rule p + p { margin-top: .6rem; }

/* ── Angajări ── */
.jobs { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.2rem; }
.job { padding: 1.5rem; border: 1px solid var(--hairline-2); background: var(--panel); }
.job h3 { font-size: 1rem; letter-spacing: .1em; text-transform: uppercase; }
.job .kind { display: inline-block; margin-top: .5rem; padding: .28rem .7rem; border: 1px solid var(--gold-deep); font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
.job p { margin-top: .9rem; color: var(--muted); font-size: .92rem; line-height: 1.7; }

/* ── Servicii, cu semnul „doar la noi" ── */
.services { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; }
.service { position: relative; border: 1px solid var(--hairline-2); background: var(--panel); overflow: hidden; display: flex; flex-direction: column; }
.service .s-shot { height: 200px; background: #000 center/cover no-repeat; }
.service .s-shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.service .s-body { padding: 1.3rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service h3 { font-size: .95rem; letter-spacing: .14em; text-transform: uppercase; }
.service p { margin-top: .7rem; color: var(--muted); font-size: .92rem; line-height: 1.7; flex: 1; }
.service .s-link { margin-top: 1.1rem; font-size: .62rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-soft); }
.only-here {
  position: absolute; top: 0; right: 0; z-index: 2; padding: .4rem .9rem;
  background: linear-gradient(100deg, #8c1f32, #c0392b); color: #ffeccd;
  font-family: var(--sans); font-size: .56rem; letter-spacing: .26em; text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.service.starred { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(198,161,91,.18), 0 18px 50px rgba(0,0,0,.42); }

/* ── Bara de acțiune pe telefon: sună / whatsapp / rezervă ── */
.action-bar { display: none; }
@media (max-width: 820px) {
  .action-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: rgba(10,6,7,.97); border-top: 1px solid var(--hairline);
    backdrop-filter: blur(10px); padding-bottom: env(safe-area-inset-bottom);
  }
  .action-bar a {
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .25rem;
    padding: .7rem .4rem; min-height: 58px; text-decoration: none; color: var(--ivory);
    font-family: var(--sans); font-size: .58rem; letter-spacing: .2em; text-transform: uppercase;
    border-right: 1px solid var(--hairline-2);
  }
  .action-bar a:last-child { border-right: 0; }
  .action-bar a svg { width: 19px; height: 19px; }
  .action-bar a.primary { background: var(--gold); color: #150f06; }
  body { padding-bottom: 58px; }
}

/* ── Galerie mare, în zid ── */
.wall { columns: 3 260px; column-gap: .8rem; }
.wall figure { margin: 0 0 .8rem; break-inside: avoid; position: relative; overflow: hidden; border: 1px solid var(--hairline-2); }
.wall img { width: 100%; display: block; transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s ease; filter: saturate(.94); }
.wall figure:hover img { transform: scale(1.05); filter: saturate(1.1); }
.wall figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: .8rem .9rem;
  background: linear-gradient(transparent, rgba(9,4,6,.9)); color: var(--gold-soft);
  font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; opacity: 0; transition: opacity .35s ease;
}
.wall figure:hover figcaption { opacity: 1; }

/* ── Aer între secțiuni; „mai mult spațiu, mai puțin text" ── */
.band.airy { padding: clamp(4rem, 11vw, 8rem) 0; }
.section-lead { max-width: 62ch; margin: 0 auto clamp(2rem, 5vw, 3.4rem); text-align: center; }
.section-lead p { color: var(--muted); margin-top: .9rem; }

@media (max-width: 900px) {
  .hall-feature { grid-template-columns: 1fr; }
  .hall-feature:nth-child(even) .hall-shot { order: 0; }
  .two-ways { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .wall { columns: 1; }
  .rule { grid-template-columns: 40px minmax(0,1fr); gap: .9rem; padding: 1.1rem 1.1rem; }
  .hero-full .btn { min-width: 0; width: 100%; }
  .hero-full .hero-ctas { flex-direction: column; width: 100%; max-width: 320px; margin-inline: auto; }
}


/* ── Pasul opțional din formularul de rezervare ── */
.opt-step { border: 1px dashed var(--hairline); margin: 0 0 1.2rem; }
.opt-step > summary {
  cursor: pointer; list-style: none; padding: .95rem 1.1rem; min-height: 48px;
  display: flex; align-items: center; gap: .7rem;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft);
}
.opt-step > summary::-webkit-details-marker { display: none; }
.opt-step > summary::before { content: '+'; font-size: 1.2rem; line-height: 1; color: var(--gold); }
.opt-step[open] > summary::before { content: '−'; }
.opt-step .opt-body { padding: 0 1.1rem 1rem; border-top: 1px solid var(--hairline-2); }
.opt-step .opt-body .field:first-child { margin-top: 1rem; }

.music-btn .lbl { font-family: var(--sans); font-size: .56rem; letter-spacing: .22em; text-transform: uppercase; margin-left: .45rem; }

/* Butonul de ambient: pastilă cu etichetă, ridicat deasupra barei de pe telefon */
.music-btn.show {
  display: inline-flex; align-items: center; justify-content: center;
  width: auto; height: 44px; border-radius: 999px; padding: 0 1rem 0 .9rem; font-size: 1rem;
}
.music-btn .bars { display: none; }
@media (max-width: 820px) { .music-btn { bottom: calc(58px + env(safe-area-inset-bottom) + .7rem); right: .8rem; } }

/* Antetul pe telefon: numele pe un rând, logo mai mic — altfel mănâncă un sfert de ecran */
@media (max-width: 680px) {
  header.site { padding-block: .7rem; }
  header.site .crest-img { width: 42px; height: 42px; }
  header.site .brand-name { font-size: .74rem; letter-spacing: .16em; white-space: nowrap; }
  header.site .brand-name small { display: none; }
  .hero-full { min-height: min(84vh, 640px); }
  .hero-full h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
}

/* ══ Scrisul de mână are nevoie de aer ══════════════════════════════════
   Great Vibes are bucle lungi în sus și în jos. Sub 1,15 rândurile se
   încalecă, iar pe un singur rând coada literelor se taie. */
.hero-full h1 { line-height: 1.14; padding-bottom: .06em; }
.hero h1.script,
.page-head h1.script { line-height: 1.16; padding-bottom: .06em; }
.notice-big .s,
.lastmin .k,
.tier .name,
.night .days,
.pkg .pkg-price,
h2.section-title .script { line-height: 1.18; }
.script { line-height: 1.18; }

/* ══ Antetul trece pe meniu-hamburger mai devreme ═══════════════════════
   Cu șapte pagini în meniu, la 900px numele casei, meniul și butonul de
   limbă nu mai încap unul lângă altul și ies din ecran. */
@media (max-width: 980px) {
  nav.main {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: #0b0906;
    border-bottom: 1px solid var(--hairline-2);
    padding: 1.2rem 1.5rem;
    gap: 1rem;
    z-index: 40;
  }
  nav.main.open { display: flex; }
  nav.main a { font-size: .78rem; letter-spacing: .16em; }
  .nav-burger { display: block; }
}

/* ══ Galeria: grilă, nu coloane ════════════════════════════════════════
   În aranjamentul pe coloane, Chrome așază greșit legendele lipite de
   fotografie și ajung una peste alta. Grila e previzibilă. */
.wall {
  columns: auto; display: grid;
  grid-template-columns: repeat(auto-fill, minmax(clamp(220px, 26vw, 300px), 1fr));
  gap: .8rem;
}
.wall figure { margin: 0; aspect-ratio: 4 / 3; }
.wall img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 680px) { .wall { grid-template-columns: 1fr 1fr; gap: .5rem; } }
@media (max-width: 420px) { .wall { grid-template-columns: 1fr; } }

/* ══ Filmările: rame egale, aliniate, nu aruncate pe pagină ════════════
   Clipurile sunt verticale (filmate pe telefon). Le dăm tuturor aceeași
   ramă 9:16, aceeași lățime și un buton de pornire în mijloc. */
.reels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: clamp(.9rem, 2vw, 1.6rem);
  margin-top: 2.2rem;
}
.reel { margin: 0; }
.reel-shot {
  position: relative; aspect-ratio: 9 / 16; overflow: hidden;
  border: 1px solid var(--hairline); background: #070405;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .45);
  transition: border-color .35s ease, transform .5s cubic-bezier(.2,.7,.2,1);
}
.reel-shot::after {   /* filet auriu interior, ca la ramele de pe site */
  content: ''; position: absolute; inset: 5px; border: 1px solid rgba(198, 161, 91, .28);
  pointer-events: none; z-index: 2;
}
.reel:hover .reel-shot { border-color: var(--gold); transform: translateY(-3px); }
.reel-shot video { width: 100%; height: 100%; object-fit: cover; display: block; }
.reel-play {
  position: absolute; inset: 0; z-index: 3; width: 100%; height: 100%;
  background: none; border: 0; cursor: pointer; display: grid; place-items: center;
  transition: opacity .3s ease;
}
.reel-play::before {
  content: ''; width: 56px; height: 56px; border-radius: 50%;
  border: 1px solid var(--gold); background: rgba(11, 6, 8, .55);
  backdrop-filter: blur(2px);
  box-shadow: 0 0 0 8px rgba(11, 6, 8, .18);
  transition: transform .3s ease, background .3s ease;
}
.reel-play::after {
  content: ''; position: absolute;
  border-style: solid; border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--gold-soft);
  margin-left: 4px;
}
.reel-play:hover::before { transform: scale(1.08); background: rgba(198, 161, 91, .22); }
.reel.playing .reel-play { opacity: 0; }
.reel.playing .reel-play:hover { opacity: 1; }
.reel.playing .reel-play::after { border-width: 0; width: 14px; height: 16px; border-left: 4px solid var(--gold-soft); border-right: 4px solid var(--gold-soft); margin-left: 0; }
.reel-time {
  position: absolute; right: 12px; bottom: 12px; z-index: 3;
  padding: .2rem .5rem; background: rgba(9, 4, 6, .72); border: 1px solid var(--hairline-2);
  font-family: var(--sans); font-size: .58rem; letter-spacing: .14em; color: var(--gold-soft);
}
.reel figcaption {
  margin-top: .8rem; text-align: center;
  font-family: var(--sans); font-size: .6rem; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted);
}
.reel:hover figcaption { color: var(--gold-soft); }
@media (max-width: 520px) { .reels { grid-template-columns: 1fr 1fr; } }

/* ══ Laptop · tabletă · telefon ═════════════════════════════════════════
   Pe ecran tactil degetul are nevoie de ~44px. Linkurile din subsol,
   butoanele de adăugat în comandă și legendele care apăreau doar la
   hover trebuie să funcționeze și fără mouse. */

/* Tabletă în portret și landscape: două coloane, nu trei înghesuite */
@media (min-width: 681px) and (max-width: 1024px) {
  .types-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hours-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reviews    { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .jobs       { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wall       { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .reels      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .booking-grid { grid-template-columns: 1fr; }
  .invite { position: static; }
  .page-head { padding-inline: 1.5rem; }
}

/* Ecrane tactile: ținte mai mari, fără efecte care cer mouse */
@media (hover: none), (max-width: 900px) {
  .foot-grid li a,
  .foot-grid p a { display: inline-block; padding: .34rem 0; }
  .foot-grid li { margin-bottom: .2rem; }
  .menu-row .add { width: 42px; height: 42px; font-size: 1.1rem; }
  .s-link, .way-go, .tc-go { display: inline-block; padding: .5rem 0 .2rem; }
  .lang-toggle button { min-height: 38px; padding-inline: .85rem; }
  .nav-burger { min-width: 46px; min-height: 46px; font-size: 1.3rem; }
  .wall figcaption { opacity: 1; }        /* fără hover, legenda rămâne pe ecran */
  .hall-feature:hover .hall-shot img,
  .wall figure:hover img { transform: none; }
  .type-card:hover, .reel:hover .reel-shot { transform: none; }
}

/* Laptop mic (1024–1280): titlurile mari să nu împingă conținutul */
@media (min-width: 1025px) and (max-width: 1280px) {
  .hero-full h1 { font-size: clamp(4rem, 9vw, 6.6rem); }
  .hall-feature { gap: clamp(1.4rem, 2.6vw, 2.2rem); }
}

/* Telefoane mici (360px și sub): antetul trebuie să încapă cu tot cu hamburger */
@media (max-width: 400px) {
  header.site { gap: .5rem; padding-inline: .8rem; }
  header.site .crest-img { width: 36px; height: 36px; }
  header.site .brand-name { font-size: .66rem; letter-spacing: .12em; }
  .lang-toggle button { padding-inline: .55rem; font-size: .6rem; }
  .nav-burger { min-width: 40px; }
}

/* ══ Personalizarea meniului: bifezi ce rămâne, bifezi ce adaugi ═══════ */
.lbl-hint { font-family: var(--sans); font-size: .62rem; letter-spacing: .1em; color: var(--muted); text-transform: none; }

.dishes { border: 1px solid var(--hairline-2); background: var(--ink); padding: .9rem 1rem 1rem; }
.dish-sec + .dish-sec { margin-top: 1.1rem; padding-top: .9rem; border-top: 1px dotted var(--hairline-2); }
.dish-sec h5 {
  font-family: var(--sans); font-size: .6rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 .5rem;
}
.dishes .dish {
  display: flex; align-items: center; gap: .65rem; cursor: pointer;
  padding: .42rem .2rem; font-size: .92rem; color: var(--ivory);
  border-bottom: 1px solid rgba(198, 161, 91, .07);
}
.dishes .dish:last-child { border-bottom: 0; }
.dishes .dish input { accent-color: var(--gold); width: 17px; height: 17px; flex: none; }
.dishes .dish.off span { color: #6b6053; text-decoration: line-through; }
.dishes .dish:hover { background: rgba(198, 161, 91, .05); }

.checks label small { display: block; font-size: .72rem; color: var(--muted); margin-top: .15rem; }
.checks label span b { font-weight: 400; color: var(--gold-soft); }
.checks label span i { color: var(--muted); font-style: italic; }
.checks label { align-items: flex-start; }
.checks input { margin-top: .15rem; flex: none; }
@media (max-width: 680px) { .checks { grid-template-columns: 1fr; } }

/* Banda care spune cinstit că prețurile nu sunt încă bătute în cuie.
   Apare doar cât timp setarea `prices_are_placeholders` e pornită. */
.price-note {
  margin: 0; padding: .85rem 1.2rem; text-align: center;
  background: linear-gradient(100deg, rgba(140,111,58,.22), rgba(122,31,46,.18));
  border-bottom: 1px solid var(--hairline);
  font-family: var(--sans); font-size: .8rem; color: var(--ivory);
}
.price-note strong { color: var(--gold-soft); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; font-size: .7rem; }
.price-note span { color: var(--muted); }
.form-error {
  margin: .8rem 0 0; padding: .8rem 1rem; border: 1px solid #7a3b3b;
  background: rgba(122,59,59,.15); color: #e8c4c4; font-size: .88rem; line-height: 1.6;
}
.form-error a { color: var(--gold-soft); }

/* ── Inclus vs. contra cost: două liste, nu una ─────────────────────────
   Clientul trebuie să vadă din prima ce intră în preț. */
.grup-eticheta {
  font-family: var(--sans); font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-soft); margin: 2.4rem 0 1.2rem; display: flex; align-items: center; gap: .9rem;
}
.grup-eticheta::before { content: ''; width: 26px; height: 1px; background: var(--gold); flex: none; }
.grup-eticheta::after { content: ''; height: 1px; background: var(--hairline-2); flex: 1; }
.grup-eticheta.extra { color: #e8b98a; }
.grup-eticheta.extra::before { background: #c0763a; }
.includes.inclus > div { border-color: rgba(198,161,91,.34); }
.includes.extra-lista > div { border-style: dashed; }
.includes.extra-lista .inc-note { color: #c9976a; }

/* ── Acceptul Termenilor, înainte de trimitere ── */
.accept-tc {
  display: flex; align-items: flex-start; gap: .7rem; cursor: pointer;
  margin: 1.2rem 0 .2rem; padding: .85rem 1rem;
  border: 1px solid var(--hairline); background: rgba(198,161,91,.06);
  font-size: .9rem; line-height: 1.6; color: var(--ivory);
}
.accept-tc input { accent-color: var(--gold); width: 18px; height: 18px; margin-top: .15rem; flex: none; }
.accept-tc a { color: var(--gold-soft); text-decoration: underline; text-underline-offset: 2px; }
.btn:disabled { opacity: .42; cursor: not-allowed; }

/* ── Recenzii Google: vizibil, dar nu strident ── */
.recenzii-cta { text-align: center; max-width: 620px; margin: 0 auto; }
.recenzii-cta .stele { display: block; font-size: 1.6rem; letter-spacing: .3em; color: var(--gold); margin-bottom: 1rem; }
.recenzii-cta h2 { font-size: clamp(1.3rem, 3.4vw, 1.9rem); letter-spacing: .1em; text-transform: uppercase; }
.recenzii-cta p { margin-top: .9rem; color: var(--muted); }
.recenzii-butoane { margin-top: 1.6rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
@media (max-width: 560px) { .recenzii-butoane .btn { width: 100%; } }

/* ══════════════════════════════════════════════════════════════════════
   v9 — mai deschis, mai viu (Andrei, 10.09: „prea închis, mortuar")
   Fondul rămâne întunecat, pentru că aurul are nevoie de el ca să lucească.
   Ce se schimbă: fotografiile ies din întuneric, capătă lumină și mișcare,
   iar între secțiuni intră aer cald în loc de negru plat.
   ══════════════════════════════════════════════════════════════════════ */

:root {
  --panel:  #1a1116;   /* era #131009 — mai cald, mai puțin funerar */
  --raised: #221720;
  --ivory:  #f7f0e4;   /* text mai luminos, contrast mai mare pe fond */
  --muted:  #b8a892;
}

/* ── Fotografiile: scoase din beznă ─────────────────────────────────── */
.gallery img, .wall img, .hall-shot img, .g-tile img,
.type-card, .way, .service .s-shot, .urs-gallery img, .gilt img {
  filter: brightness(1.14) saturate(1.1) contrast(1.03);
}
/* Voalurile care stăteau peste poze erau prea groase — le subțiez. */
.type-card::before {
  background: linear-gradient(to top, rgba(26,17,22,.88) 4%, rgba(26,17,22,.22) 52%, rgba(26,17,22,.04) 100%);
}
.way::before {
  background: linear-gradient(to top, rgba(26,17,22,.88) 6%, rgba(26,17,22,.20) 55%, rgba(26,17,22,.02) 100%);
}
.photo-band { background-blend-mode: normal; }

/* Halou cald în spatele fotografiilor mari — pare luminată din spate */
.hall-shot, .gilt, .type-card, .service, .reel-shot, .wall figure {
  box-shadow: 0 0 0 1px rgba(198,161,91,.10), 0 18px 46px rgba(0,0,0,.42),
              0 0 70px -28px rgba(224,181,74,.42);
}

/* ── Lumină care se mișcă peste poze la hover ──────────────────────── */
.g-tile, .wall figure, .type-card, .hall-shot, .service { position: relative; overflow: hidden; }
.g-tile::after, .wall figure::after, .hall-shot::after {
  content: ''; position: absolute; top: 0; left: -70%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,238,200,.30), transparent);
  transform: skewX(-18deg); pointer-events: none; opacity: 0; transition: opacity .3s;
}
.g-tile:hover::after, .wall figure:hover::after, .hall-shot:hover::after {
  opacity: 1; animation: treceLumina 1.1s ease-out;
}
@keyframes treceLumina { from { left: -70%; } to { left: 130%; } }

/* ── Secțiunile respiră: fundal cald în locul negrului plat ────────── */
.band.airy:nth-of-type(even) {
  background:
    radial-gradient(1100px 420px at 50% 0%, rgba(224,181,74,.075), transparent 68%),
    var(--panel);
}
.band.tinted {
  background:
    radial-gradient(900px 380px at 15% 0%, rgba(140,60,70,.16), transparent 66%),
    var(--panel);
}

/* Filet auriu care desparte secțiunile, în loc de linie moartă */
section.band + section.band { position: relative; }
section.band + section.band::before {
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: min(560px, 76%); height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,161,91,.55), transparent);
}

/* ── Titlurile prind lumină ─────────────────────────────────────────── */
.section-title .script, .hero-full h1, .lastmin .k, .recenzii-cta .stele {
  text-shadow: 0 0 34px rgba(224,181,74,.30);
}

/* ── Butonul plin: auriu care se mișcă, nu bloc mat ────────────────── */
.btn.solid {
  background: linear-gradient(100deg, #d9ad55, #f0d99a 42%, #d9ad55 78%);
  background-size: 220% 100%; color: #17100a; border-color: #d9ad55;
  transition: background-position .55s ease, box-shadow .3s ease, transform .2s ease;
}
.btn.solid:hover {
  background-position: 100% 0; transform: translateY(-1px);
  box-shadow: 0 8px 26px -8px rgba(224,181,74,.6);
}

/* Cardurile se ridică puțin la hover — semn că pagina e vie */
.type-card:hover, .service:hover, .review:hover, .job:hover, .hours-card:hover {
  border-color: rgba(198,161,91,.5);
  box-shadow: 0 0 0 1px rgba(198,161,91,.16), 0 22px 54px rgba(0,0,0,.45),
              0 0 80px -26px rgba(224,181,74,.5);
}

@media (prefers-reduced-motion: reduce) {
  .g-tile:hover::after, .wall figure:hover::after, .hall-shot:hover::after { animation: none; opacity: 0; }
  .btn.solid:hover { transform: none; }
}
.bonus-copii {
  margin-top: .4rem !important; font-size: .68rem; letter-spacing: .06em;
  color: #8fc98f; text-transform: none;
}
.tier-pick .pick.selected .bonus-copii { color: #a9e0a9; }
