/* ==========================================================================
   fistiQ — The Beauty Salon · 2026 rebrand
   Playfair Display  +  Montserrat  +  Georgia Pro
   Warm greige · sage greens · dusty mauve · "noi îți vom întoarce oglinda"
   ========================================================================== */

/* RESET ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* TOKENS ----------------------------------------------------------------- */
:root {
  /* core brand */
  --greige:    #EEEBE5;
  --sage:      #9AA893;
  --sage-pale: #BBC3B6;
  --sage-mid:  #798A72;
  --forest:    #526749;
  --mauve:     #AC99A4;

  /* derived ink (brand has no near-black) */
  --ink:        #34402E;
  --ink-soft:   #46523E;
  --forest-deep:#3C4A34;

  /* semantic */
  --bg:          var(--greige);
  --text:        var(--ink);
  --text-muted:  var(--sage);
  --title:       var(--sage-mid);
  --title-strong:var(--forest);
  --accent:      var(--forest);
  --pop:         var(--mauve);

  /* surfaces / bands */
  --surface:      #F5F2EC;
  --surface-sunk: #E6E2DA;
  --band-pale:    #E4E7DF;
  --paper-tint:   rgba(82,103,73,0.03);

  /* text on dark forest */
  --on-forest:        #F2F0EA;
  --on-forest-strong: #FFFFFF;
  --on-forest-muted:  #D5DBCF;
  --on-forest-pop:    #C9B6C1;

  /* hairlines */
  --line:        rgba(82,103,73,0.18);
  --line-soft:   rgba(82,103,73,0.10);
  --line-strong: rgba(82,103,73,0.30);
  --line-mauve:  rgba(172,153,164,0.45);
  --line-on-forest: rgba(242,240,234,0.20);

  /* utility */
  --focus-ring:  #526749;
  --shadow-soft: 0 1px 2px rgba(60,74,52,0.06), 0 16px 40px rgba(60,74,52,0.10);
  --shadow-mirror: 0 30px 80px rgba(40,52,36,0.22), 0 4px 14px rgba(40,52,36,0.10);

  /* rhythm */
  --pad-x:    clamp(1.25rem, 4.5vw, 4.5rem);
  --pad-y:    clamp(4rem, 9vw, 7.5rem);
  --rad:      2px;
  --rad-pill: 999px;
  --header-h: clamp(3.25rem, 5.5vw, 4.25rem);

  /* motion */
  --ease-out:    cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  --t-fast: 200ms;
  --t-mid:  420ms;
  --t-slow: 720ms;

  /* type */
  --display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --body:    'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --serif:   'Georgia Pro', Georgia, 'Times New Roman', serif;
}

html {
  font-size: clamp(13.5px, 0.85vw + 7.5px, 15.4px);
  scroll-behavior: smooth;
}

body {
  font-family: var(--body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

::selection { background: var(--forest); color: var(--greige); }

/* Keyboard focus — visible ring (WCAG 2.4.7) */
:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; border-radius: 2px; }
.manifesto :focus-visible, .legacy :focus-visible, .site-footer :focus-visible,
.drawer :focus-visible, .mobile-cta :focus-visible { outline-color: var(--on-forest-strong); }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* Common ----------------------------------------------------------------- */
.kicker {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.kicker-light { color: var(--on-forest-muted); }

.reveal-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.18em;
  margin-bottom: -0.14em;
}
.reveal-line-inner { display: block; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--rad-pill);
  transition: transform var(--t-fast) var(--ease-out),
              background var(--t-fast) var(--ease-out),
              color var(--t-fast) var(--ease-out),
              box-shadow var(--t-fast) var(--ease-out);
  white-space: nowrap;
}
.btn-primary { background: var(--forest); color: var(--greige); }
.btn-primary:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
  box-shadow: 0 0 0 3px rgba(172,153,164,0.30);
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-strong); }
.btn-ghost:hover { background: var(--forest); color: var(--greige); border-color: var(--forest); }

.btn-link {
  display: inline-flex;
  align-items: baseline;
  gap: 0.6rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid var(--ink);
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  width: max-content;
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.btn-link:hover { color: var(--accent); border-color: var(--accent); }

/* ==========================================================================
   LOADER — the dark mirror
   ========================================================================== */
.loader {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(130% 110% at 50% 32%, #46543d 0%, #2c3525 46%, #191f13 100%);
  overflow: hidden;
  transition: opacity 900ms var(--ease-out), visibility 0s linear 1150ms, transform 1100ms var(--ease-out);
}
body.is-loaded .loader { opacity: 0; visibility: hidden; pointer-events: none; transform: scale(1.05); }
.loader-sheen {
  position: absolute; inset: -40% -20%; z-index: 1; pointer-events: none;
  background: linear-gradient(102deg, transparent 43%, rgba(245,242,233,0.10) 50%, transparent 57%);
  transform: translateX(-55%);
  animation: loader-sheen 3.4s var(--ease-in-out) infinite;
}
@keyframes loader-sheen { 0% { transform: translateX(-60%); } 55%, 100% { transform: translateX(60%); } }
.loader-mark { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 1.1rem; transition: opacity 480ms ease, transform 820ms var(--ease-out); }
body.is-loaded .loader-mark { opacity: 0; transform: translateY(-10px) scale(0.96); }
.loader-logo { width: clamp(190px, 36vw, 330px); height: auto; filter: brightness(0) invert(1) opacity(0.94); }
.loader-tag { font-family: var(--body); font-weight: 500; font-size: 0.64rem; letter-spacing: 0.32em; text-transform: lowercase; color: rgba(245,242,235,0.6); }
.loader-bar { position: absolute; bottom: clamp(2.2rem, 6vh, 4rem); left: 50%; transform: translateX(-50%); z-index: 2; width: clamp(160px, 32vw, 300px); height: 1px; background: rgba(245,242,235,0.18); overflow: hidden; }
.loader-bar-fill { display: block; height: 100%; width: 0%; background: rgba(245,242,235,0.88); transition: width 240ms linear; }
body.is-loaded .loader-bar { opacity: 0; transition: opacity 300ms ease; }

/* ==========================================================================
   WELCOME POPUP
   ========================================================================== */
.welcome {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: flex-end;
  padding: clamp(1rem, 4vw, 3rem);
  visibility: hidden; pointer-events: none;
}
.welcome.is-open { visibility: visible; pointer-events: auto; }
.welcome-scrim {
  position: absolute; inset: 0;
  background: rgba(60, 74, 52, 0.42);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; transition: opacity 340ms ease;
}
.welcome.is-open .welcome-scrim { opacity: 1; }
.welcome-card {
  position: relative; width: min(420px, 100%);
  background: var(--greige); border-radius: var(--rad); overflow: hidden;
  box-shadow: var(--shadow-soft);
  transform: translateX(112%); opacity: 0;
  transition: transform 520ms var(--ease-out), opacity 360ms ease;
}
.welcome.is-open .welcome-card { transform: translateX(0); opacity: 1; }
.welcome-x {
  position: absolute; top: 0.85rem; right: 0.85rem; z-index: 3;
  width: 2.75rem; height: 2.75rem; min-width: 44px; min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; background: rgba(238,235,229,0.86); color: var(--ink);
  transition: background var(--t-fast) var(--ease-out);
}
.welcome-x:hover { background: var(--greige); }
.welcome-media { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; }
.welcome-media img { width: 100%; height: 100%; object-fit: cover; }
.welcome-body { padding: clamp(1.4rem, 3.5vw, 2rem); display: flex; flex-direction: column; gap: 0.85rem; }
.welcome-kicker { font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.welcome-title { font-family: var(--display); font-weight: 600; font-size: clamp(1.5rem, 3.5vw, 1.9rem); line-height: 1.1; letter-spacing: -0.01em; color: var(--ink); }
.welcome-pct { display: block; font-size: clamp(3.6rem, 12vw, 4.6rem); line-height: 0.9; color: var(--forest); font-weight: 700; }
.welcome-lead { font-family: var(--serif); font-size: 0.92rem; line-height: 1.55; color: var(--ink-soft); }
.welcome-form { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.25rem; }
.welcome-field { display: flex; flex-direction: column; gap: 0.3rem; }
.welcome-field span { font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.welcome-field input { padding: 0.7rem 0.85rem; border: 1px solid var(--line); background: var(--surface); border-radius: var(--rad); font-size: 0.9rem; color: var(--ink); transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out); }
.welcome-field input:focus { outline: 0; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(82,103,73,0.16); }
.welcome-consent { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.72rem; line-height: 1.45; color: var(--ink-soft); }
.welcome-consent input { margin-top: 0.15rem; width: 1rem; height: 1rem; accent-color: var(--mauve); flex-shrink: 0; }
.welcome-consent a { color: var(--accent); border-bottom: 1px solid var(--accent); }
.welcome-submit { width: 100%; margin-top: 0.25rem; }
.welcome-decline { font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--ink-soft); text-align: center; padding: 0.4rem; transition: color var(--t-fast) var(--ease-out); }
.welcome-decline:hover { color: var(--ink); }
@media (max-width: 600px) {
  .welcome { align-items: flex-end; justify-content: center; padding: 0; }
  .welcome-card { width: 100%; border-radius: var(--rad) var(--rad) 0 0; transform: translateY(112%); max-height: 92svh; overflow-y: auto; }
  .welcome.is-open .welcome-card { transform: translateY(0); }
  .welcome-media { aspect-ratio: 16 / 7; }
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  color: var(--ink);
  transition: background var(--t-mid) var(--ease-out),
              backdrop-filter var(--t-mid) var(--ease-out),
              border-color var(--t-mid) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.header-bar {
  height: var(--header-h);
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}
.site-header.is-solid {
  background: rgba(238, 235, 229, 0.90);
  -webkit-backdrop-filter: saturate(115%) blur(10px);
  backdrop-filter: saturate(115%) blur(10px);
  border-bottom-color: var(--line-soft);
}

.brand { justify-self: start; display: inline-flex; align-items: center; }
.brand-logo { height: clamp(1.5rem, 2.3vw, 1.95rem); width: auto; }

.primary-nav { justify-self: center; }
.primary-nav ul { display: flex; gap: clamp(1.25rem, 2.5vw, 2.4rem); align-items: center; }
.primary-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  position: relative;
  padding: 0.4rem 0;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease-out);
}
.primary-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms var(--ease-out);
}
.primary-nav a:hover { color: var(--accent); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta { justify-self: end; display: flex; align-items: center; gap: 1rem; }
.header-phone {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease-out);
}
.header-phone:hover { color: var(--accent); }
.cta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.62rem 1.2rem;
  border: 1px solid var(--forest);
  border-radius: var(--rad-pill);
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest);
  transition: background var(--t-fast) var(--ease-out), color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.cta-pill:hover { background: var(--forest); color: var(--greige); box-shadow: 0 0 0 3px rgba(172,153,164,0.28); }

.hamburger {
  display: none;
  width: 2.75rem; height: 2.75rem;
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 0.34rem;
  justify-self: end;
}
.hamburger span { display: block; width: 1.4rem; height: 1.5px; background: var(--ink); transition: transform var(--t-fast) var(--ease-out), opacity var(--t-fast) var(--ease-out); }
.hamburger.is-open span:nth-child(1) { transform: translateY(0.175rem) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { transform: translateY(-0.175rem) rotate(-45deg); }

/* motto row */
.header-motto {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem var(--pad-x);
  border-top: 1px solid var(--line-soft);
  overflow: hidden;
  transition: max-height var(--t-mid) var(--ease-out), opacity var(--t-mid) var(--ease-out), padding var(--t-mid) var(--ease-out), border-color var(--t-mid) var(--ease-out);
  max-height: 3rem;
}
.site-header.is-solid .header-motto { max-height: 0; opacity: 0; padding-top: 0; padding-bottom: 0; border-top-color: transparent; }
.hm-address, .hm-hours {
  font-family: var(--body);
  font-weight: 500;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hm-hours { justify-self: end; }
.hm-rotator {
  justify-self: center;
  position: relative;
  height: 1.4em;
  display: inline-flex;
  align-items: center;
  perspective: 320px;
}
.hm-line {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  color: var(--accent);
  white-space: nowrap;
  backface-visibility: hidden;
}
@media (max-width: 760px) {
  .hm-address, .hm-hours { display: none; }
  .header-motto { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 1080px) {
  .primary-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .header-bar { grid-template-columns: 1fr auto; }
}

/* DRAWER ----------------------------------------------------------------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--forest-deep);
  color: var(--greige);
  padding: calc(var(--header-h) + 2rem) var(--pad-x) 2rem;
  transform: translateY(-100%);
  transition: transform 480ms var(--ease-out);
  overflow-y: auto;
}
.drawer.is-open { transform: translateY(0); }
.drawer-list { display: flex; flex-direction: column; gap: 1.4rem; margin-bottom: 3rem; }
.drawer-list a {
  font-family: var(--display);
  font-size: clamp(2.2rem, 8vw, 3.6rem);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 0.98;
  color: var(--greige);
}
.drawer-list a:hover { color: var(--on-forest-strong); }
.drawer-meta {
  border-top: 1px solid var(--line-on-forest);
  padding-top: 1.5rem;
  font-size: 0.9rem;
  display: flex; flex-direction: column; gap: 0.5rem;
  color: var(--on-forest-muted);
}
.drawer-meta a { color: var(--on-forest-muted); border-bottom: 1px solid var(--on-forest-muted); padding-bottom: 1px; }

/* header over the dark hero (top, not solid) → light treatment */
.site-header:not(.is-solid) { color: var(--on-forest); }
.site-header:not(.is-solid) .brand-logo { filter: brightness(0) invert(1) opacity(0.96); }
.site-header:not(.is-solid) .primary-nav a { color: rgba(242,240,234,0.92); }
.site-header:not(.is-solid) .primary-nav a::after { background: #fff; }
.site-header:not(.is-solid) .primary-nav a:hover { color: #fff; }
.site-header:not(.is-solid) .header-phone { color: rgba(242,240,234,0.92); }
.site-header:not(.is-solid) .header-phone:hover { color: #fff; }
.site-header:not(.is-solid) .header-search { color: rgba(242,240,234,0.92); }
.site-header:not(.is-solid) .header-search:hover { color: #fff; background: rgba(255,255,255,0.08); }
.site-header:not(.is-solid) .cta-pill { color: #fff; border-color: rgba(255,255,255,0.55); }
.site-header:not(.is-solid) .cta-pill:hover { background: #fff; color: var(--ink); border-color: #fff; box-shadow: 0 0 0 3px rgba(172,153,164,0.35); }
.site-header:not(.is-solid) .hamburger span { background: #fff; }
.site-header:not(.is-solid) .header-motto { border-top-color: rgba(255,255,255,0.18); }
.site-header:not(.is-solid) .hm-address,
.site-header:not(.is-solid) .hm-hours { color: rgba(242,240,234,0.72); }
.site-header:not(.is-solid) .hm-line { color: var(--sage-pale); }

/* ==========================================================================
   1. HERO — full-bleed cinematic mirror
   ========================================================================== */
.hero {
  position: relative; min-height: 100svh; width: 100%; overflow: hidden;
  display: flex; align-items: flex-end;
  background: #1a2014; color: var(--on-forest); isolation: isolate;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-veil {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20,26,14,0.55) 0%, rgba(20,26,14,0) 26%, rgba(20,26,14,0) 42%, rgba(20,26,14,0.55) 74%, rgba(20,26,14,0.9) 100%),
    linear-gradient(72deg, rgba(20,26,14,0.66) 0%, rgba(20,26,14,0.12) 50%, rgba(20,26,14,0) 70%);
}
.hero-grain {
  position: absolute; inset: 0; opacity: 0.15; mix-blend-mode: overlay; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-mirror-line {
  /* desktop: one engraved line on the top arc of the mirror glass, in the gap between header strip and H1 */
  position: absolute; z-index: 1; left: 50%; top: 11.5%; transform: translateX(-50%);
  width: max-content; max-width: 92%; text-align: center; white-space: nowrap;
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1rem, 1.5vw, 1.3rem); line-height: 1.35; letter-spacing: 0.01em;
  color: rgba(255,255,255,0.42);
  text-shadow: 0 1px 1px rgba(20,26,14,0.3), 0 0 24px rgba(255,255,255,0.12);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--pad-x) clamp(3.5rem, 9vh, 6.5rem);
}
.hero-eyebrow {
  font-family: var(--body); font-weight: 600; font-size: 0.68rem;
  text-transform: uppercase; letter-spacing: 0.24em; color: rgba(242,240,234,0.82);
  display: inline-flex; gap: 0.5rem; align-items: center; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.hero-eyebrow .dot { color: var(--on-forest-pop); }
.hero-h1 {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(2.5rem, 6.8vw, 6.4rem); line-height: 1.02; letter-spacing: -0.022em;
  color: #fff;
  text-shadow: 0 2px 50px rgba(20,26,14,0.4);
}
.hero-h1 em {
  font-style: italic; font-weight: 600;
  color: #d6c2ce; /* luminous mauve — same brand purple family, legible over video */
  text-shadow: 0 1px 2px rgba(20,26,14,0.72), 0 2px 10px rgba(20,26,14,0.5), 0 4px 26px rgba(20,26,14,0.35);
}
.hero-foot {
  margin-top: clamp(1.75rem, 4vh, 2.75rem);
  display: grid; grid-template-columns: minmax(0, 34ch) auto; align-items: end; gap: clamp(1.5rem, 4vw, 3.5rem);
}
.hero-sub { font-family: var(--body); font-weight: 300; font-size: 1.04rem; line-height: 1.72; letter-spacing: 0.012em; color: rgba(242,240,234,0.9); max-width: 42ch; }
.hero-sub::before { content: ''; display: block; width: 2.6rem; height: 1px; background: var(--sage-pale); margin-bottom: 1rem; }
.hero-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }
.hero .btn-primary { background: var(--greige); color: var(--ink); }
.hero .btn-primary:hover { background: var(--sage-pale); color: var(--ink); box-shadow: 0 0 0 3px rgba(172,153,164,0.4); }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.hero .btn-ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.hero-cue {
  position: absolute; left: var(--pad-x); bottom: clamp(1rem, 2.6vh, 1.6rem); z-index: 2;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(242,240,234,0.72);
}
.hero-cue .cue-line { display: block; width: 2.4rem; height: 1px; background: rgba(242,240,234,0.4); position: relative; overflow: hidden; }
.hero-cue .cue-line::after { content: ''; position: absolute; inset: 0; background: var(--sage-pale); transform: translateX(-100%); animation: cue-tick 2.4s var(--ease-in-out) infinite; }
@keyframes cue-tick { 0% { transform: translateX(-100%); } 50% { transform: translateX(0); } 100% { transform: translateX(105%); } }
@media (max-width: 760px) {
  .hero-h1 { font-size: clamp(2.1rem, 10vw, 3.6rem); }
  .hero-foot { grid-template-columns: 1fr; align-items: start; }
  .hero-cue { display: none; }
  .hero-mirror-line { top: 15%; font-size: 1.05rem; width: 82%; max-width: 82%; white-space: normal; }
  .hero-mirror-line span { display: block; }
  /* tall content on small phones: clear the fixed header and the sticky CTA bar */
  .hero-content { padding-top: calc(var(--header-h) + 3.5rem); padding-bottom: 6.5rem; }
}
/* ≤360px: the taller content stack leaves no free band on the glass — hide the decorative line */
@media (max-width: 360px) { .hero-mirror-line { display: none; } }

/* ==========================================================================
   2. MANIFESTO  +  REEL
   ========================================================================== */
.manifesto {
  background: var(--forest);
  color: var(--on-forest);
  padding: var(--pad-y) var(--pad-x) 0;
  position: relative;
  overflow: hidden;
}
.manifesto::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 45% at 82% 18%, rgba(189,195,182,0.14), transparent 60%);
  pointer-events: none;
}
.manifesto-inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  padding-bottom: var(--pad-y);
}
.manifesto-quote {
  font-family: var(--body); font-style: normal; font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.42rem); line-height: 1.62; letter-spacing: 0.01em;
  color: var(--on-forest); max-width: 48ch;
}
.manifesto-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 5.4vw, 5rem);
  line-height: 1.06;
  letter-spacing: -0.018em;
  color: var(--on-forest-strong);
  max-width: 24ch;
}
.manifesto-h em { font-style: italic; color: var(--on-forest-strong); font-weight: 500; }
.manifesto-sig {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--on-forest);
  line-height: 1.4;
}
.manifesto-sig span {
  font-family: var(--body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-forest-muted);
  display: inline-block;
  margin-top: 0.3rem;
}
.manifesto-rule { width: 100%; height: 1px; background: var(--line-on-forest); }

/* draggable reel */
.reel {
  position: relative;
  margin: 0 calc(-1 * var(--pad-x));
  border-top: 1px solid var(--line-on-forest);
  border-bottom: 1px solid var(--line-on-forest);
  padding: 1.15rem 0;
  overflow: hidden;
  pointer-events: none; /* pure marquee — never captures touch / page scroll */
  -webkit-user-select: none;
  user-select: none;
}
.reel-track {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  white-space: nowrap;
  will-change: transform;
  touch-action: pan-y;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem);
  color: var(--on-forest);
  padding-left: 1.4rem;
}
.reel-word { letter-spacing: -0.005em; }
.reel-dot { color: var(--on-forest-pop); font-style: normal; font-family: var(--body); font-size: 0.7em; }

/* ==========================================================================
   3. SERVICII  (sticky cross-fade — KEEP)
   ========================================================================== */
.rooms { background: var(--bg); padding: var(--pad-y) 0 0; }
.rooms-intro {
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid; gap: 1.25rem;
  margin-bottom: clamp(2.5rem, 6vw, 5rem);
}
.rooms-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 6vw, 5.6rem);
  line-height: 1.0;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 18ch;
}
.rooms-h em { font-style: italic; font-weight: 600; color: var(--mauve); }
.rooms-lead {
  max-width: 50ch;
  font-size: 1rem;
  color: var(--ink-soft);
  border-left: 1px solid var(--mauve);
  padding-left: 1rem;
  margin-top: 0.25rem;
}

.rooms-stage {
  position: relative;
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1320px; margin: 0 auto;
  padding: 0 var(--pad-x) var(--pad-y);
  align-items: start;
}
.rooms-photo-stack {
  position: sticky;
  top: calc(var(--header-h) + 2rem);
  align-self: start;
  height: clamp(420px, 72vh, 720px);
  border-radius: var(--rad);
  overflow: hidden;
  background: var(--surface-sunk);
  isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.r-photo { position: absolute; inset: 0; margin: 0; opacity: 0; transition: opacity 600ms var(--ease-out); }
.r-photo img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1200ms var(--ease-out); }
.r-photo.is-active { opacity: 1; }
.r-photo.is-active img { transform: scale(1); }
.r-photo figcaption {
  position: absolute; left: 1.25rem; bottom: 1.25rem;
  font-family: var(--body); font-weight: 600;
  font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--on-forest);
  background: rgba(60, 74, 52, 0.55);
  padding: 0.45rem 0.8rem; border-radius: var(--rad-pill);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}

.rooms-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4.5rem); }
.room {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1rem, 2.4vw, 2rem);
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--line);
}
.room:last-child { border-bottom: 0; padding-bottom: 0; }
.room-num {
  font-family: var(--body); font-weight: 600;
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mauve);
  display: flex; flex-direction: column; align-items: flex-start; gap: 0.25rem;
  padding-top: 0.5rem;
}
.room-num span { font-family: var(--display); font-style: italic; font-weight: 600; font-size: 2.2rem; letter-spacing: -0.01em; color: var(--mauve); line-height: 1; }
.room-body h3 {
  font-family: var(--display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.4rem, 5.2vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--forest-deep);
  margin-bottom: 0.45rem;
}
.room-tag {
  font-family: var(--body); font-weight: 600;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 1.1rem;
}
.room-text { font-family: var(--serif); max-width: 42ch; font-size: 1.0rem; line-height: 1.66; color: var(--ink-soft); margin-bottom: 1.4rem; }
.room-text em { font-style: italic; color: var(--ink); }
.room-services { display: grid; gap: 0.5rem; font-size: 0.9rem; color: var(--ink); }
.room-services li { display: flex; align-items: baseline; gap: 0.6rem; }
.room-services li::before { content: ''; width: 0.4rem; height: 0.4rem; background: var(--sage-mid); border-radius: 50%; flex-shrink: 0; transform: translateY(-0.1em); }
.room-services b { font-family: var(--body); font-weight: 700; color: var(--accent); }

@media (max-width: 1080px) {
  .rooms-stage { grid-template-columns: 1fr; }
  .rooms-photo-stack { position: relative; top: 0; height: 56vh; margin-bottom: 2rem; }
}
@media (max-width: 540px) { .room { grid-template-columns: 1fr; gap: 0.75rem; } }

/* ==========================================================================
   3b. SPĂLĂTORIE AUTO — teaser band (dark, links to /spalatorie/)
   ========================================================================== */
.wash-teaser {
  background: var(--forest-deep); color: var(--on-forest);
  padding: clamp(3.5rem, 7vw, 6rem) var(--pad-x);
  position: relative; overflow: hidden;
}
.wash-teaser::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 55% at 85% 20%, rgba(172,153,164,0.16), transparent 60%);
}
.wash-teaser::after {
  content: 'Q'; position: absolute; right: -1rem; bottom: -4.5rem; pointer-events: none;
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(11rem, 22vw, 20rem); line-height: 1; color: rgba(242,240,234,0.05);
}
.wash-teaser-inner {
  position: relative; max-width: 1320px; margin: 0 auto;
}
.wt-copy { max-width: 60ch; }
.wt-h {
  margin-top: 0.9rem;
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.9rem, 4.2vw, 3.4rem); line-height: 1.05; letter-spacing: -0.018em;
  color: var(--on-forest-strong);
}
.wt-h em { font-style: italic; color: var(--on-forest-pop); }
.wt-lead { margin-top: 1.1rem; font-family: var(--serif); font-size: 1.02rem; line-height: 1.6; color: var(--on-forest-muted); max-width: 46ch; }
.wt-meta {
  margin-top: 1.1rem; display: flex; align-items: center; gap: 0.6rem; flex-wrap: wrap;
  font-family: var(--body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--on-forest-muted);
}
.wt-meta b { color: var(--on-forest-strong); font-weight: 700; }
.wt-dot { color: var(--on-forest-pop); }
.wt-cta { margin-top: 1.6rem; background: var(--greige); color: var(--ink); }
.wt-cta:hover { background: var(--sage-pale); color: var(--ink); box-shadow: 0 0 0 3px rgba(172,153,164,0.4); }

/* ==========================================================================
   4. CARTA / Prețuri
   ========================================================================== */
/* ==========================================================================
   SERVICII & PREȚURI  (live, admin-editable — replaces rooms + carta)
   ========================================================================== */
.services { background: var(--bg); padding: var(--pad-y) var(--pad-x); }
.services-intro, .svc-list, .svc-foot { max-width: 1320px; margin-left: auto; margin-right: auto; }
.services-intro { margin-bottom: clamp(2.2rem, 5vw, 4rem); }
.services-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 6vw, 5rem); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); max-width: 18ch; }
.services-h em { font-style: italic; color: var(--mauve); }
.svc-list { list-style: none; border-top: 1px solid var(--line-strong); }
.svc { border-bottom: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(0, 38%);
  gap: clamp(0.9rem, 3vw, 3rem); align-items: start;
  padding: clamp(1.6rem, 3.4vw, 2.8rem) 0;
}
.svc-no { font-family: var(--display); font-style: italic; font-weight: 600; font-size: clamp(1.3rem, 3vw, 2.4rem); color: var(--mauve); line-height: 1; }
.svc-name { font-family: var(--display); font-style: italic; font-weight: 600; font-size: clamp(1.5rem, 3.2vw, 2.7rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--forest-deep); margin-bottom: 0.45rem; }
.svc-blurb { font-family: var(--serif); font-size: 0.98rem; line-height: 1.5; color: var(--ink-soft); max-width: 42ch; }
.svc-more { margin-top: 0.95rem; font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); background: none; border: 0; cursor: pointer; padding: 0; }
.svc-more:hover { color: var(--forest-deep); }
.svc-detail { margin-top: 1rem; max-width: 54ch; }
.svc-detail p { font-family: var(--serif); font-size: 0.94rem; line-height: 1.62; color: var(--ink-soft); }
.svc-detail-media { margin-bottom: 1rem; border-radius: var(--rad); overflow: hidden; max-width: 320px; }
.svc-detail-media img { width: 100%; height: auto; display: block; }
.svc-prices ul { list-style: none; }
.svc-prices li { display: flex; align-items: baseline; gap: 0.5rem; padding: 0.34rem 0; }
.pl { font-family: var(--body); font-weight: 500; font-size: 0.86rem; color: var(--ink); }
.pn { font-weight: 400; color: var(--ink-soft); font-size: 0.82em; }
.pd { flex: 1 1 auto; min-width: 1.2rem; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); }
.pv { font-family: var(--body); font-weight: 600; font-size: 0.86rem; color: var(--forest-deep); white-space: nowrap; }
.svc-soon { font-family: var(--serif); font-style: italic; color: var(--ink-soft); font-size: 0.9rem; }
.svc-wash-cta { display: inline-block; margin-top: 0.95rem; font-family: var(--body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.04em; color: var(--mauve); }
.svc-wash-cta:hover { color: var(--forest-deep); }
.svc-foot { margin-top: 1.8rem; font-family: var(--body); font-size: 0.72rem; letter-spacing: 0.05em; color: var(--ink-soft); }
@media (max-width: 760px) {
  .svc-row { grid-template-columns: auto minmax(0, 1fr); row-gap: 0.6rem; }
  .svc-prices { grid-column: 1 / -1; }
}

.carta { background: var(--surface); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); position: relative; }
.carta::before, .carta::after { content: ''; position: absolute; left: var(--pad-x); right: var(--pad-x); height: 1px; background: var(--line); }
.carta::before { top: clamp(2rem, 4vw, 3.5rem); }
.carta::after { bottom: clamp(2rem, 4vw, 3.5rem); }
.carta-header { max-width: 1320px; margin: 0 auto clamp(3rem, 6vw, 5rem); text-align: center; }
.carta-h {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 6.6rem);
  line-height: 1.0; letter-spacing: -0.022em; color: var(--ink);
  display: inline-flex; flex-direction: column; align-items: center;
}
.carta-h em { font-style: italic; }
.carta-lead { margin-top: 1rem; max-width: 42ch; margin-left: auto; margin-right: auto; color: var(--ink-soft); font-family: var(--serif); }
.carta-lead em { color: var(--accent); font-style: italic; }
.carta-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 3.5rem) clamp(2.5rem, 5vw, 5rem); }
.carta-block-wide { grid-column: 1 / -1; }
.carta-block { border-top: 1px solid var(--ink); padding-top: 1.4rem; }
.carta-block > header { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: 1.25rem; flex-wrap: wrap; }
.carta-block h3 { font-family: var(--display); font-style: italic; font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.015em; color: var(--ink); }
.carta-note { font-family: var(--body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); }
.carta-list { display: flex; flex-direction: column; gap: 0.7rem; }
.carta-list li { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 0.65rem; font-size: 0.98rem; color: var(--ink); }
.carta-list-cols li { grid-template-columns: auto 1fr repeat(3, 4ch); }
.carta-cols-head { display: grid; grid-template-columns: auto 1fr repeat(3, 4ch); gap: 0.65rem; font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 0.5rem; }
.carta-cols-head span:nth-child(n+2) { text-align: right; }
.carta-list .dish { font-family: var(--body); font-weight: 500; }
.carta-list .dish em { font-style: italic; font-weight: 400; color: var(--ink-soft); font-size: 0.92em; margin-left: 0.25em; font-family: var(--serif); }
.carta-list .dot-leader { border-bottom: 1.5px dotted var(--ink-soft); align-self: end; margin-bottom: 0.32em; opacity: 0.55; }
.carta-list .price { font-family: var(--body); font-weight: 600; font-size: 0.94rem; text-align: right; color: var(--accent); white-space: nowrap; }
.carta-foot {
  max-width: 1320px; margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  font-family: var(--body); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.06em; color: var(--ink-soft);
}
.carta-foot a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; font-weight: 600; }

@media (max-width: 820px) {
  .carta-grid { grid-template-columns: 1fr; }
  .carta-list-cols li { grid-template-columns: auto 1fr repeat(3, 3.4ch); }
  .carta-list .price { font-size: 0.86rem; }
  /* left-align the Prețuri header on mobile so it matches the other sections (desktop stays centered);
     block-level flex puts the kicker pill on its own line above the title */
  .carta-header { text-align: left; }
  .carta-h { display: flex; align-items: flex-start; }
  .carta-lead { margin-left: 0; margin-right: 0; }
}

/* ==========================================================================
   5. ECHIPA
   ========================================================================== */
.echipa-section { background: var(--bg); padding: var(--pad-y) var(--pad-x); }
.echipa { max-width: 1320px; margin: 0 auto; }
.echipa-head { max-width: 60ch; margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }
.echipa-head h3 { margin-top: 0.6rem; font-family: var(--display); font-weight: 500; font-size: clamp(2rem, 4.5vw, 3.8rem); line-height: 1.02; letter-spacing: -0.018em; color: var(--ink); }
.echipa-head h3 em { font-style: italic; color: var(--accent); }
.echipa-intro { margin-top: 1.1rem; font-family: var(--serif); font-size: 1.05rem; line-height: 1.62; color: var(--ink-soft); max-width: 52ch; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(0.5rem, 1.5vw, 1.15rem); }
.team-member { display: block; text-align: left; font: inherit; color: inherit; }
.tm-photo {
  position: relative; display: flex; align-items: center; justify-content: center;
  aspect-ratio: 4 / 5; border-radius: var(--rad); overflow: hidden;
  background: linear-gradient(180deg, var(--sage-pale) 0%, var(--surface-sunk) 92%);
  background-size: cover; background-position: center top;
  box-shadow: var(--shadow-soft);
  font-family: var(--display); font-style: italic; font-weight: 500;
  font-size: clamp(1.4rem, 3.6vw, 2.6rem); color: var(--forest);
  transition: transform 520ms var(--ease-out), box-shadow 520ms var(--ease-out);
}
.tm-photo::after { content: attr(data-mono); opacity: 0.85; }
.tm-photo.has-photo::after { content: none; }
/* hover (desktop) OR tap (touch → .is-revealed): gentle lift + caption fade-in over the photo */
.team-member:hover .tm-photo,
.team-member.is-revealed .tm-photo {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(40,52,36,0.34), 0 5px 14px rgba(40,52,36,0.14);
}
.tm-meta {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  display: flex; flex-direction: column; gap: 0.12rem;
  padding: 2.6rem 0.85rem 0.8rem;
  background: linear-gradient(180deg, rgba(40,52,36,0) 0%, rgba(40,52,36,0.55) 40%, rgba(40,52,36,0.9) 100%);
  opacity: 0; transform: translateY(14px);
  transition: opacity 560ms var(--ease-out), transform 560ms var(--ease-out);
}
.team-member:hover .tm-meta,
.team-member.is-revealed .tm-meta { opacity: 1; transform: translateY(0); }
.tm-name { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(0.9rem, 1.5vw, 1.2rem); color: var(--on-forest-strong); line-height: 1.15; }
.tm-role { font-family: var(--body); font-weight: 600; font-size: 0.56rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-forest-pop); }
.tm-spec { margin-top: 0.35rem; font-family: var(--serif); font-size: 0.76rem; line-height: 1.45; color: var(--on-forest-muted); }
/* touch screens have no hover: caption starts hidden, revealed on tap (.is-revealed, set in app.js) */
@media (hover: none) { .tm-meta { opacity: 0; transform: translateY(14px); } }
@media (prefers-reduced-motion: reduce) { .tm-photo, .tm-meta { transition: none; } .tm-meta { opacity: 1; transform: none; } }

/* mobile: 3-up (client request 2026-06-19); full caption shows on tap */
@media (max-width: 560px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
  .tm-name { font-size: 0.82rem; }
  .tm-spec { font-size: 0.66rem; line-height: 1.35; margin-top: 0.25rem; }
  .tm-meta { padding: 1.4rem 0.5rem 0.5rem; }
}

/* ==========================================================================
   6. LEGACY — 23 ani
   ========================================================================== */
.legacy { position: relative; background: var(--forest-deep); color: var(--on-forest); padding: var(--pad-y) var(--pad-x); }
.legacy-stage { position: relative; max-width: 1320px; margin: 0 auto; border-radius: var(--rad); overflow: hidden; isolation: isolate; padding: clamp(3rem, 7vw, 6rem) clamp(2rem, 4vw, 4rem); text-align: center; display: grid; gap: clamp(1.5rem, 4vw, 2.5rem); }
.legacy-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.04); filter: brightness(0.5) saturate(1.05); }
.legacy-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(60,74,52,0.82) 0%, rgba(40,52,36,0.90) 100%); z-index: -1; }
.legacy-numeral { display: inline-flex; align-items: flex-start; justify-content: center; margin: 0 auto; }
.big-num { font-family: var(--display); font-weight: 600; font-size: clamp(8rem, 24vw, 21rem); line-height: 0.82; letter-spacing: -0.04em; color: var(--on-forest-strong); }
.legacy-tag { font-family: var(--body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--on-forest-muted); }
.legacy-stats { display: flex; justify-content: center; gap: clamp(1.5rem, 4vw, 3.5rem); flex-wrap: wrap; align-items: center; margin-top: 1rem; }
.stat { display: flex; flex-direction: column; gap: 0.25rem; align-items: center; }
.stat-num { font-family: var(--display); font-weight: 600; font-size: clamp(1.8rem, 3.5vw, 3rem); letter-spacing: -0.01em; color: var(--on-forest-strong); }
.stat-label { font-family: var(--body); font-weight: 500; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-forest-muted); }
.stat-div { width: 1px; height: 2.4rem; background: var(--line-on-forest); }
.testimonials { max-width: 1320px; margin: clamp(3rem, 6vw, 5rem) auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.4rem); }
.testimonial { background: rgba(242,240,234,0.05); border: 1px solid var(--line-on-forest); border-radius: var(--rad); padding: clamp(1.5rem, 3vw, 2.2rem); display: flex; flex-direction: column; gap: 1.1rem; }
.t-badge { font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--on-forest-muted); border: 1px solid var(--line-mauve); padding: 0.4rem 0.7rem; border-radius: var(--rad-pill); align-self: flex-start; }
.testimonial p { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 1.08rem; line-height: 1.5; color: var(--on-forest); }
.t-author { font-family: var(--body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--on-forest-muted); margin-top: auto; padding-top: 0.4rem; border-top: 1px solid var(--line-on-forest); }

@media (max-width: 820px) { .testimonials { grid-template-columns: 1fr; } .stat-div { display: none; } }

/* ==========================================================================
   7. PROGRAMARE
   ========================================================================== */
.programare { background: var(--band-pale); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); }
.prog-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 5vw, 5rem); align-items: start; }
.prog-form-side { display: flex; flex-direction: column; gap: 1.5rem; }
.prog-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.6rem, 6.5vw, 6rem); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.prog-lead { max-width: 38ch; color: var(--ink-soft); font-family: var(--serif); }
.prog-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 0.5rem; }
.prog-form label { display: flex; flex-direction: column; gap: 0.35rem; }
.prog-form label > span { font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); }
.prog-form input, .prog-form select, .prog-form textarea {
  padding: 0.85rem 1rem; border: 1px solid var(--line); background: var(--greige); border-radius: var(--rad);
  font-family: var(--body); font-size: 0.94rem; color: var(--ink); resize: vertical;
  transition: border-color var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.prog-form input:focus, .prog-form select:focus, .prog-form textarea:focus { outline: 0; border-color: var(--forest); box-shadow: 0 0 0 3px rgba(82,103,73,0.16); }
.prog-full { grid-column: 1 / -1; }
.btn-form { grid-column: 1 / -1; justify-self: start; }
.prog-direct { grid-column: 1 / -1; font-family: var(--body); font-weight: 500; font-size: 0.74rem; letter-spacing: 0.04em; color: var(--ink-soft); margin-top: 0.5rem; }
.prog-direct a { color: var(--accent); border-bottom: 1px solid var(--accent); padding-bottom: 1px; font-weight: 600; }
.prog-cta { display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; margin-top: 0.5rem; }
.btn-call { font-size: 1.05rem; padding: 1.05rem 1.9rem; gap: 0.7rem; }
.btn-call svg { flex: none; }
.prog-info-side { display: grid; gap: 1.5rem; }
.info-block { border-top: 1px solid var(--ink); padding-top: 1rem; }
.info-label { font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 0.5rem; }
.info-block p { font-family: var(--display); font-weight: 500; font-size: 1.18rem; line-height: 1.4; color: var(--ink); letter-spacing: -0.005em; }
.info-block p a { border-bottom: 1px solid var(--ink); padding-bottom: 1px; transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out); }
.info-block p a:hover { color: var(--accent); border-color: var(--accent); }
.info-block > a { font-family: var(--body); font-weight: 600; font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); display: inline-block; margin-top: 0.5rem; border-bottom: 1px solid var(--accent); padding-bottom: 1px; }
.info-note { margin-top: 0.5rem !important; font-family: var(--serif) !important; font-style: italic; font-size: 0.85rem !important; color: var(--ink-soft) !important; }

@media (max-width: 1080px) { .prog-grid { grid-template-columns: 1fr; } .prog-form { grid-template-columns: 1fr; } }

/* ==========================================================================
   8. BLOG stub
   ========================================================================== */
.blog-stub { background: var(--bg); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); }
.blog-stub-inner { max-width: 1320px; margin: 0 auto; display: grid; gap: 1.25rem; justify-items: start; }
.blog-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 4.6rem); line-height: 1.02; letter-spacing: -0.02em; color: var(--ink); }
.blog-h em { font-style: italic; color: var(--accent); }
.blog-stub p { font-family: var(--serif); max-width: 50ch; font-size: 1.05rem; color: var(--ink-soft); line-height: 1.6; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest-deep); color: var(--on-forest); padding: var(--pad-y) var(--pad-x) clamp(2rem, 3vw, 2.5rem); }
.footer-top { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 1fr 0.85fr 1.3fr; gap: clamp(2rem, 4vw, 4rem); align-items: start; }
.footer-logo { width: clamp(150px, 18vw, 220px); height: auto; filter: brightness(0) invert(1) opacity(0.92); }
.footer-tag { font-family: var(--display); font-style: italic; font-size: 1.3rem; line-height: 1.35; color: var(--on-forest); margin-top: 1rem; max-width: 24ch; }
.footer-meta p { font-size: 0.9rem; line-height: 1.6; color: var(--on-forest-muted); }
.footer-meta p:first-child { font-family: var(--display); font-style: italic; font-size: 1.12rem; color: var(--on-forest-strong); margin-bottom: 0.4rem; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols > div { display: flex; flex-direction: column; gap: 0.45rem; }
.f-h { font-family: var(--body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--on-forest-muted); margin-bottom: 0.3rem; }
.footer-cols a { font-size: 0.9rem; color: var(--on-forest-muted); transition: color var(--t-fast) var(--ease-out); }
.footer-cols a:hover { color: var(--on-forest-strong); }
.footer-bottom { max-width: 1320px; margin: clamp(3rem, 5vw, 4rem) auto 0; padding-top: 1.5rem; border-top: 1px solid var(--line-on-forest); display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-family: var(--body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.08em; color: var(--on-forest-muted); }
.footer-credit a { color: var(--on-forest-muted); border-bottom: 1px solid var(--on-forest-muted); padding-bottom: 1px; }

@media (max-width: 820px) { .footer-top { grid-template-columns: 1fr; } .footer-cols { grid-template-columns: repeat(3, 1fr); } }

/* ==========================================================================
   STICKY MOBILE CTA
   ========================================================================== */
.mobile-cta { position: fixed; z-index: 60; left: 0; right: 0; bottom: 0; display: none; padding: 0.6rem var(--pad-x) calc(0.6rem + env(safe-area-inset-bottom)); background: var(--forest-deep); border-top: 1px solid var(--line-on-forest); gap: 0.6rem; }
.mobile-cta a { flex: 1 1 0; display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem; padding: 0.85rem 0.6rem; font-family: var(--body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; border-radius: var(--rad-pill); }
.m-call { background: rgba(242,240,234,0.06); color: var(--on-forest); border: 1px solid var(--line-on-forest); }
.m-prog { background: var(--sage-pale); color: var(--ink); }
@media (max-width: 1080px) { .mobile-cta { display: flex; } body { padding-bottom: 4.5rem; } }

/* ==========================================================================
   ROUND 2 — search btn, service detail, promos, team, reviews, faq, search
   ========================================================================== */

/* header search button */
.header-search {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem; min-width: 40px; min-height: 40px;
  border-radius: var(--rad-pill); color: var(--ink);
  transition: color var(--t-fast) var(--ease-out), background var(--t-fast) var(--ease-out);
}
.header-search:hover { color: var(--accent); background: rgba(82,103,73,0.07); }

/* service detail accordion (Servicii) */
.room-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 1.1rem; padding-top: 0.5rem; padding-bottom: 0.3rem;
  font-family: var(--body); font-weight: 600; font-size: 0.76rem;
  letter-spacing: 0.08em; color: var(--accent);
  border-bottom: 1px solid var(--accent);
  transition: color var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out);
}
.room-more:hover { color: var(--forest-deep); }
.rm-icon { position: relative; width: 0.7rem; height: 0.7rem; flex-shrink: 0; }
.rm-icon::before, .rm-icon::after {
  content: ''; position: absolute; background: currentColor; transition: transform var(--t-mid) var(--ease-out);
}
.rm-icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.rm-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.room-more[aria-expanded="true"] .rm-icon::after { transform: translateX(-50%) scaleY(0); }
.room-detail { overflow: hidden; }
.room-detail p {
  font-family: var(--serif); max-width: 46ch; margin-top: 1.2rem;
  padding: 1.2rem 1.4rem; background: var(--surface); border-left: 2px solid var(--sage-mid);
  border-radius: 0 var(--rad) var(--rad) 0;
  font-size: 0.98rem; line-height: 1.66; color: var(--ink-soft);
}
.room-detail p em { font-style: italic; color: var(--ink); }
/* service detail with a photo (poză + explicație) */
.room-detail:has(.room-detail-media) { display: flex; gap: clamp(1rem, 2vw, 1.6rem); align-items: stretch; flex-wrap: wrap; }
.room-detail-media { margin: 1.2rem 0; flex: 0 0 clamp(11rem, 22vw, 15rem); border-radius: var(--rad); overflow: hidden; box-shadow: var(--shadow-soft); }
.room-detail-media img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.room-detail:has(.room-detail-media) p { flex: 1 1 16rem; max-width: none; }
@media (max-width: 560px) { .room-detail-media { flex-basis: 100%; } }
/* service detail with a photo (poză + explicație) */
.room-detail:has(.room-detail-media) { display: flex; gap: clamp(1rem, 2vw, 1.6rem); align-items: stretch; flex-wrap: wrap; }
.room-detail-media { margin: 1.2rem 0; flex: 0 0 clamp(11rem, 22vw, 15rem); border-radius: var(--rad); overflow: hidden; box-shadow: var(--shadow-soft); }
.room-detail-media img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; display: block; }
.room-detail:has(.room-detail-media) p { flex: 1 1 16rem; max-width: none; }
@media (max-width: 560px) { .room-detail-media { flex-basis: 100%; } }

/* PROMOS / Nou & Oferte */
.promos { background: var(--surface); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); }
.promos-head { max-width: 1320px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); }
.promos-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 5.4rem); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.promos-h em { font-style: italic; color: var(--accent); }
.promos-lead { margin-top: 1rem; max-width: 48ch; color: var(--ink-soft); font-family: var(--serif); border-left: 2px solid var(--mauve); padding-left: 1rem; }
.promos-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.2rem); }
.promo {
  display: flex; flex-direction: column; gap: 0.7rem;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--rad);
  transition: transform var(--t-mid) var(--ease-out), box-shadow var(--t-mid) var(--ease-out);
}
.promo:hover { transform: translateY(-3px); box-shadow: var(--shadow-soft); }
.promo-tag {
  font-family: var(--body); font-weight: 600; font-size: 0.62rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); align-self: flex-start;
  background: rgba(172,153,164,0.16); border: 1px solid var(--line-mauve);
  padding: 0.3rem 0.6rem; border-radius: var(--rad-pill);
}
.promo h3 { font-family: var(--display); font-weight: 500; font-style: italic; font-size: clamp(1.4rem, 2.6vw, 2rem); line-height: 1.1; letter-spacing: -0.015em; color: var(--ink); }
.promo p { font-family: var(--serif); font-size: 0.96rem; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.promo-foot { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 0.5rem; padding-top: 0.9rem; border-top: 1px solid var(--line); flex-wrap: wrap; }
.promo-until { font-family: var(--body); font-weight: 500; font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }
.promo-cta { font-family: var(--body); font-weight: 600; font-size: 0.8rem; color: var(--accent); white-space: nowrap; transition: color var(--t-fast) var(--ease-out); }
.promo-cta:hover { color: var(--forest-deep); }
.promo-feature { background: var(--forest); border-color: var(--forest); }
.promo-feature .promo-tag { color: var(--on-forest-strong); background: rgba(201,182,193,0.18); border-color: rgba(201,182,193,0.40); }
.promo-feature h3 { color: var(--on-forest-strong); }
.promo-feature p { color: var(--on-forest); }
.promo-feature .promo-foot { border-top-color: var(--line-on-forest); }
.promo-feature .promo-until { color: var(--on-forest-muted); }
.promo-feature .promo-cta { color: var(--on-forest-strong); }
@media (max-width: 720px) { .promos-grid { grid-template-columns: 1fr; } }

/* REVIEWS carousel (in legacy / forest) */
.reviews { max-width: 1100px; margin: clamp(3rem, 6vw, 5rem) auto 0; text-align: center; }
.reviews-head { display: inline-flex; align-items: center; gap: 0.7rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.reviews-stars { color: var(--on-forest-pop); letter-spacing: 0.15em; font-size: 0.9rem; }
.reviews-agg { font-family: var(--body); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.04em; color: var(--on-forest-muted); }
.reviews-agg b { color: var(--on-forest-strong); font-weight: 700; }
.reviews-stage { position: relative; min-height: 13rem; }
.reviews-mark { position: absolute; top: -2.5rem; left: 50%; transform: translateX(-50%); font-family: var(--display); font-size: 9rem; line-height: 1; color: rgba(201,182,193,0.28); pointer-events: none; }
.reviews-track { position: relative; min-height: 13rem; }
.review { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; opacity: 0; visibility: hidden; transition: opacity 600ms var(--ease-out); }
.review.is-active { opacity: 1; visibility: visible; }
.review p { font-family: var(--display); font-style: italic; font-weight: 500; font-size: clamp(1.2rem, 2.4vw, 1.7rem); line-height: 1.5; color: var(--on-forest); max-width: 46ch; }
.review-author { font-family: var(--body); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--on-forest-strong); }
.review-author span { color: var(--on-forest-muted); font-weight: 500; }
.reviews-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: clamp(1.5rem, 3vw, 2.5rem); flex-wrap: wrap; }
.rev-arrow { width: 2.6rem; height: 2.6rem; min-width: 44px; min-height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-on-forest); border-radius: 999px; color: var(--on-forest); transition: background var(--t-fast) var(--ease-out), border-color var(--t-fast) var(--ease-out); }
.rev-arrow:hover { background: rgba(242,240,234,0.08); border-color: var(--on-forest-muted); }
.reviews-dots { display: inline-flex; gap: 0.5rem; }
.reviews-dots { gap: 0.25rem; }
.reviews-dots button { width: 24px; height: 24px; padding: 8px; border-radius: 999px; background: var(--line-on-forest); background-clip: content-box; transition: background var(--t-fast) var(--ease-out), transform var(--t-fast) var(--ease-out); }
.reviews-dots button[aria-current="true"] { background: var(--on-forest-pop); background-clip: content-box; transform: scale(1.2); }
.reviews-all { font-family: var(--body); font-weight: 600; font-size: 0.74rem; letter-spacing: 0.04em; color: var(--on-forest-muted); border-bottom: 1px solid var(--on-forest-muted); padding-bottom: 1px; margin-left: 0.5rem; transition: color var(--t-fast) var(--ease-out); }
.reviews-all:hover { color: var(--on-forest-strong); }
@media (max-width: 560px) { .reviews-all { width: 100%; margin: 0.5rem 0 0; } }

/* FAQ */
.faq { background: var(--bg); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); }
.faq-head { max-width: 880px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.faq-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.4rem, 6vw, 5rem); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.faq-h em { font-style: italic; color: var(--accent); }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--body); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.18rem); letter-spacing: -0.005em; color: var(--ink);
  transition: color var(--t-fast) var(--ease-out);
}
.faq-q:hover { color: var(--accent); }
.faq-icon { position: relative; width: 1rem; height: 1rem; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--accent); transition: transform var(--t-mid) var(--ease-out); }
.faq-icon::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-q[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) scaleY(0); }
.faq-a { overflow: hidden; }
.faq-a p { font-family: var(--serif); font-size: 1.02rem; line-height: 1.66; color: var(--ink-soft); max-width: 64ch; padding-bottom: 1.6rem; }
.faq-cta {
  max-width: 880px; margin: clamp(2rem, 4vw, 3rem) auto 0;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap;
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.4rem);
  background: var(--forest-deep); color: var(--on-forest); border-radius: var(--rad);
  transition: transform var(--t-fast) var(--ease-out), box-shadow var(--t-fast) var(--ease-out);
}
.faq-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.faq-cta > span:first-child { font-family: var(--display); font-style: italic; font-size: clamp(1.2rem, 2.4vw, 1.6rem); color: var(--on-forest); }
.faq-cta strong { color: var(--on-forest-strong); font-weight: 600; }
.faq-cta-num { font-family: var(--body); font-weight: 700; font-size: clamp(1.1rem, 2vw, 1.4rem); letter-spacing: 0.02em; color: var(--on-forest-strong); white-space: nowrap; }

/* SEARCH overlay */
.search-overlay {
  position: fixed; inset: 0; z-index: 160;
  display: flex; align-items: flex-start; justify-content: center;
  padding: clamp(3rem, 12vh, 8rem) var(--pad-x) 2rem;
  visibility: hidden; pointer-events: none;
}
.search-overlay.is-open { visibility: visible; pointer-events: auto; }
.search-scrim { position: absolute; inset: 0; background: rgba(60,74,52,0.55); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); opacity: 0; transition: opacity 300ms ease; }
.search-overlay.is-open .search-scrim { opacity: 1; }
.search-panel {
  position: relative; width: min(620px, 100%);
  background: var(--greige); border-radius: var(--rad); box-shadow: var(--shadow-soft);
  overflow: hidden; transform: translateY(-12px) scale(0.98); opacity: 0;
  transition: transform 360ms var(--ease-out), opacity 280ms ease;
}
.search-overlay.is-open .search-panel { transform: translateY(0) scale(1); opacity: 1; }
.search-bar { display: flex; align-items: center; gap: 0.85rem; padding: 1.15rem 1.3rem; border-bottom: 1px solid var(--line); color: var(--accent); }
.search-bar input {
  flex: 1; border: 0; background: transparent; outline: 0;
  font-family: var(--display); font-size: clamp(1.3rem, 3vw, 1.8rem); color: var(--ink); letter-spacing: -0.01em;
}
.search-bar input::placeholder { color: var(--ink-soft); opacity: 0.55; }
.search-x { font-family: var(--body); font-weight: 600; font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 4px; padding: 0.3rem 0.5rem; }
.search-x:hover { color: var(--ink); border-color: var(--line-strong); }
.search-results { max-height: min(50vh, 420px); overflow-y: auto; }
.search-results li a, .search-results li { display: block; }
.search-result {
  display: flex; align-items: baseline; gap: 0.75rem; padding: 0.9rem 1.3rem;
  border-bottom: 1px solid var(--line-soft); transition: background var(--t-fast) var(--ease-out);
}
.search-result:hover, .search-result.is-active { background: var(--band-pale); }
.search-result .sr-title { font-family: var(--body); font-weight: 600; font-size: 0.96rem; color: var(--ink); }
.search-result .sr-title mark { background: transparent; color: var(--accent); }
.search-result .sr-kind { font-family: var(--body); font-weight: 600; font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-left: auto; white-space: nowrap; }
.search-result .sr-desc { display: block; font-family: var(--serif); font-size: 0.84rem; color: var(--ink-soft); margin-top: 0.15rem; }
.search-hint, .search-empty { padding: 1.1rem 1.3rem; font-family: var(--body); font-size: 0.82rem; color: var(--ink-soft); }
.search-hint em { font-style: normal; color: var(--accent); }
@media (max-width: 1080px) { .header-search { display: none; } }

/* ==========================================================================
   CU CE LUCRĂM (brands)
   ========================================================================== */
.brands { background: var(--bg); padding: var(--pad-y) var(--pad-x); border-top: 1px solid var(--line-soft); }
.brands-inner { max-width: 1320px; margin: 0 auto; }
.brands-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.brands-h { font-family: var(--display); font-weight: 500; font-size: clamp(2.2rem, 5.5vw, 4.6rem); line-height: 1.0; letter-spacing: -0.022em; color: var(--ink); }
.brands-h em { font-style: italic; color: var(--forest-deep); }
.brands-lead { font-family: var(--body); font-weight: 300; color: var(--ink-soft); max-width: 54ch; margin-top: 1rem; letter-spacing: 0.01em; border-left: 2px solid var(--mauve); padding-left: 1rem; }
.brands-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--rad); overflow: hidden;
}
.brand-cell {
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: clamp(1.5rem, 3.4vw, 2.9rem);
  min-height: clamp(6rem, 11vw, 8.6rem);
  transition: background var(--t-fast) var(--ease-out);
}
.brand-cell:hover { background: color-mix(in srgb, var(--mauve) 13%, var(--bg)); }
.brand-logo {
  display: block; width: auto; height: auto;
  max-width: min(80%, 190px);
  max-height: clamp(2.1rem, 4.4vw, 3rem);
  object-fit: contain;
  filter: grayscale(1) brightness(0.6);
  opacity: 0.66;
  transition: filter 520ms var(--ease-out), opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.brand-cell:hover .brand-logo { filter: none; opacity: 1; transform: scale(1.045); }
.brand-wordmark {
  font-family: var(--body); font-weight: 700;
  font-size: clamp(1.25rem, 2.6vw, 1.85rem); letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink);
  opacity: 0.6; transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}
.brand-cell:hover .brand-wordmark { opacity: 1; transform: scale(1.045); }
@media (hover: none) { .brand-logo { filter: grayscale(1) brightness(0.62); opacity: 0.8; } }
@media (max-width: 560px) {
  .brands-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .brand-cell:last-child { grid-column: 1 / -1; }
  .brand-logo { max-height: 2.5rem; }
}

/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .cue-line::after { animation: none; }
}
