/* ==========================================================================
   Yuppy Yee — styles.css
   Pure CSS, no build step. Design tokens live in :root below.
   ========================================================================== */

:root {
  /* Brand palette — "confetti on cream" */
  --yy-coral:   #FF6B6B;
  --yy-sunny:   #FFC93C;
  --yy-teal:    #2EC4B6;
  --yy-purple:  #7B5EA7;
  --yy-cream:   #FFF8F0;
  --yy-ink:     #2B2D42;
  --yy-white:   #FFFFFF;

  /* Darker variants for WCAG AA text / button fills (bright coral & teal
     fail contrast with white text, so CTAs use these) */
  --yy-coral-deep:  #C93B3B;
  --yy-teal-deep:   #0B7F75;
  --yy-purple-deep: #5F4488;
  --yy-ink-soft:    #555873;

  /* Tints for section backgrounds */
  --yy-cream-2:     #FFF0DC;
  --yy-purple-tint: #F3EEFA;
  --yy-teal-tint:   #E7F7F5;

  /* Type */
  --font-display: 'Baloo 2', 'Nunito', cursive;
  --font-body: 'Nunito', system-ui, sans-serif;

  /* Shape */
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 24px rgba(43, 45, 66, .10);
  --shadow-lift: 0 16px 36px rgba(43, 45, 66, .14);

  /* Layout */
  --container: 1100px;
  --gutter: 16px;
  --header-h: 72px;

  color-scheme: light only;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--yy-ink);
  background: var(--yy-cream);
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
address { font-style: normal; }
a { color: var(--yy-coral-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--yy-ink); }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.2rem, 2rem + 2.6vw, 3.9rem); }
h2 { font-size: clamp(1.8rem, 1.5rem + 1.6vw, 2.7rem); }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1em; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 780px; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--yy-ink);
  color: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  z-index: 200;
}
.skip-link:focus { top: 12px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 0 rgba(43, 45, 66, .12);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(43, 45, 66, .18); }
.btn:active { transform: translateY(1px); box-shadow: 0 2px 0 rgba(43, 45, 66, .12); }
.btn-lg { min-height: 56px; padding: 14px 30px; font-size: 1.15rem; }
.btn-sm { min-height: 44px; padding: 8px 18px; font-size: .98rem; }
.btn-emoji { font-size: 1.15em; line-height: 1; }
.ico { width: 1.1em; height: 1.1em; }

.btn-primary { background: var(--yy-coral-deep); color: #fff; }
.btn-primary:hover { background: #B83232; color: #fff; }

.btn-whatsapp { background: var(--yy-teal); color: var(--yy-ink); }
.btn-whatsapp:hover { background: #29B3A6; color: var(--yy-ink); }

.btn-sunny { background: var(--yy-sunny); color: var(--yy-ink); }
.btn-sunny:hover { background: #FFD45C; color: var(--yy-ink); }

.btn-white { background: #fff; color: var(--yy-coral-deep); }
.btn-white:hover { background: var(--yy-cream); color: var(--yy-coral-deep); }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 240, .88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow .2s ease;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(43, 45, 66, .08); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--yy-ink);
}
.logo-mark { transition: transform .3s ease; }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.55rem;
  letter-spacing: -.02em;
  color: var(--yy-ink);
}
.logo-text em { font-style: normal; color: var(--yy-coral-deep); }

.site-nav ul { display: flex; gap: 4px; }
.site-nav li a {
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  color: var(--yy-ink);
  text-decoration: none;
  transition: background-color .18s ease;
}
.site-nav li a:hover { background: var(--yy-cream-2); }

.site-nav { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle-bar {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: var(--yy-ink);
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(40px, 6vw, 80px) 0 110px;
  background:
    radial-gradient(60% 50% at 85% 20%, rgba(255, 201, 60, .22), transparent 70%),
    radial-gradient(45% 45% at 10% 80%, rgba(46, 196, 182, .16), transparent 70%),
    var(--yy-cream);
}
.confetti {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--yy-purple-deep);
  background: #fff;
  border-radius: var(--radius-pill);
  padding: 6px 14px 6px 10px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--yy-coral);
  box-shadow: 0 0 0 4px rgba(255, 107, 107, .25);
}

.hl {
  position: relative;
  display: inline-block;
  color: var(--yy-coral-deep);
}
.hl::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: .06em;
  height: .28em;
  background: var(--yy-sunny);
  border-radius: 999px;
  z-index: -1;
  transform: rotate(-1.2deg);
}

.lead {
  font-size: clamp(1.1rem, 1rem + .5vw, 1.3rem);
  max-width: 34em;
  color: var(--yy-ink-soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 20px;
}
.cta-row-center { justify-content: center; }

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-weight: 700;
  font-size: .95rem;
  color: var(--yy-ink-soft);
}
.trust-strip .check { color: var(--yy-teal-deep); margin-right: 4px; }

.hero-art { position: relative; }
.ilustratie-hero { position: relative; z-index: 1; }
.ilustratie-hero svg { width: 100%; height: auto; filter: drop-shadow(0 18px 30px rgba(43, 45, 66, .12)); }

.sticker {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  padding: 12px 18px;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  font-family: var(--font-display);
  transform: rotate(-6deg);
}
.sticker strong { font-size: 1.5rem; font-weight: 800; color: var(--yy-ink); }
.sticker span { font-size: .8rem; font-weight: 700; color: var(--yy-ink-soft); text-transform: uppercase; letter-spacing: .05em; }
.sticker-exp { top: 4%; left: -2%; }
.sticker-price {
  right: -2%; bottom: 10%;
  transform: rotate(5deg);
  background: var(--yy-sunny);
}
.sticker-price strong, .sticker-price span { color: var(--yy-ink); }

/* Balloons float */
.balloon-float { animation: float 5s ease-in-out infinite; transform-origin: center; }
.balloon-float-2 { animation-duration: 6.2s; animation-delay: -1.5s; }
.balloon-float-3 { animation-duration: 5.6s; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-9px) rotate(1.5deg); }
}

/* --------------------------------------------------------------------------
   Section dividers (wave)
   -------------------------------------------------------------------------- */
.divider {
  position: absolute;
  left: 0; right: 0;
  height: 60px;
  line-height: 0;
  z-index: 1;
}
.divider svg { width: 100%; height: 60px; }
.hero .divider { bottom: -1px; }
.divider-top { top: -1px; }
.divider-to-white { color: var(--yy-white); }
.divider-to-cream { color: var(--yy-cream); }
.divider-to-purple { color: var(--yy-purple-tint); }

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */
.section {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0 clamp(56px, 7vw, 90px);
}
.section-white { background: var(--yy-white); }
.section-cream { background: var(--yy-cream); }
.section-purple { background: var(--yy-purple-tint); }

.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); }
.kicker {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .95rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yy-teal-deep);
  margin-bottom: 8px;
}
.kicker-light { color: var(--yy-purple-deep); }
.section-intro { font-size: 1.1rem; color: var(--yy-ink-soft); }

.card {
  background: var(--yy-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

/* --------------------------------------------------------------------------
   Servicii
   -------------------------------------------------------------------------- */
.grid-serv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.serv-card {
  padding: 26px 24px 22px;
  border: 2px solid var(--yy-cream-2);
}
.serv-card h3 { margin: 16px 0 6px; font-size: 1.2rem; }
.serv-card p { margin: 0; color: var(--yy-ink-soft); font-size: .98rem; }
.serv-icon {
  width: 56px; height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--c, var(--yy-coral));
  background: color-mix(in srgb, var(--c, var(--yy-coral)) 16%, #fff);
}
.serv-icon svg { width: 34px; height: 34px; }
.serv-art { overflow: hidden; border: 0; }
.serv-art svg { width: 100%; height: 100%; object-fit: cover; }

.note-strip {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 28px 0 0;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--yy-cream);
  font-weight: 700;
}
.note-icon { font-size: 1.4rem; line-height: 1; }

/* --------------------------------------------------------------------------
   Unde venim
   -------------------------------------------------------------------------- */
.unde-inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 22px; }
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--yy-ink);
  background: #fff;
  border: 2px solid transparent;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease;
}
.chip:hover { transform: rotate(-2deg) scale(1.03); }
.chip-coral  { border-color: var(--yy-coral); }
.chip-teal   { border-color: var(--yy-teal); }
.chip-sunny  { border-color: var(--yy-sunny); }
.chip-purple { border-color: var(--yy-purple); }
.unde-note { font-size: 1.08rem; color: var(--yy-ink-soft); margin: 0; }
.unde-note strong { color: var(--yy-ink); }
.unde-art svg { width: 100%; height: auto; }

/* --------------------------------------------------------------------------
   Prețuri
   -------------------------------------------------------------------------- */
.grid-price {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  padding: 28px 26px 24px;
  border: 2px solid var(--yy-cream-2);
  display: flex;
  flex-direction: column;
}
.price-name { font-size: 1.3rem; margin: 0; }
.price-meta {
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--yy-teal-deep);
  margin: 2px 0 14px;
}
.price {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  margin: 0 0 12px;
  color: var(--yy-ink);
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}
.price-num { font-size: 2.6rem; letter-spacing: -.02em; }
.price-cur { font-size: 1.2rem; color: var(--yy-ink-soft); }
.price-from { font-size: 1rem; color: var(--yy-ink-soft); font-weight: 700; }
.price-desc { margin: auto 0 0; color: var(--yy-ink-soft); font-size: .98rem; }

.price-card-featured {
  border-color: var(--yy-coral);
  background: linear-gradient(180deg, #fff 0%, #FFF3F0 100%);
  box-shadow: 0 16px 40px rgba(255, 107, 107, .22);
}
.price-card-featured .price-num { color: var(--yy-coral-deep); }
.badge-popular {
  position: absolute;
  top: -14px; right: 18px;
  margin: 0;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--yy-sunny);
  color: var(--yy-ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .02em;
  transform: rotate(3deg);
  box-shadow: var(--shadow-soft);
}
.price-card-purple { border-color: #E3D8F0; background: linear-gradient(180deg, #fff 0%, var(--yy-purple-tint) 100%); }
.price-card-purple .price-meta { color: var(--yy-purple-deep); }
.price-card-purple .price-num { color: var(--yy-purple-deep); }

/* Extras */
.extras {
  margin-top: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--yy-cream);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
}
.extras-title { grid-column: 1 / -1; margin: 0 0 4px; font-size: 1.35rem; }
.extras-list { display: grid; gap: 10px; }
.extra {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.extra-emoji { font-size: 1.5rem; line-height: 1; }
.extra-name { font-weight: 700; }
.extra-name small { font-weight: 600; color: var(--yy-ink-soft); }
.extra-price {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--yy-coral-deep);
  white-space: nowrap;
}
.extras-art svg { width: 100%; height: auto; }

/* Callout — custom offer */
.callout {
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-lg);
  background: var(--yy-ink);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  right: -80px; top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 201, 60, .35), transparent 70%);
}
.callout-kicker {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--yy-sunny);
  margin-bottom: 6px;
}
.callout h3 { color: #fff; font-size: clamp(1.3rem, 1.1rem + 1vw, 1.8rem); }
.callout p:last-child { margin: 0; color: rgba(255, 255, 255, .8); }
.callout .btn { position: relative; }

/* --------------------------------------------------------------------------
   Ursitoare
   -------------------------------------------------------------------------- */
.section-purple { overflow: hidden; }
.ursitoare-inner {
  position: relative;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}
.ursitoare-art svg { width: 100%; height: auto; }
.ursitoare-copy h2 { color: var(--yy-purple-deep); }
.ursitoare-copy p { color: var(--yy-ink-soft); font-size: 1.05rem; }
.ursitoare-list { display: grid; gap: 10px; margin: 6px 0 24px; }
.ursitoare-list li {
  padding: 12px 16px 12px 44px;
  border-radius: var(--radius-md);
  background: #fff;
  position: relative;
  box-shadow: var(--shadow-soft);
}
.ursitoare-list li::before {
  content: "✦";
  position: absolute;
  left: 16px; top: 11px;
  color: var(--yy-purple);
  font-size: 1.1rem;
}
.ursitoare-list strong { color: var(--yy-purple-deep); }

/* --------------------------------------------------------------------------
   Cum funcționează
   -------------------------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 2px solid var(--yy-cream-2);
}
.step-num {
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--yy-coral-deep);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 14px;
  box-shadow: 0 6px 0 rgba(201, 59, 59, .25);
}
.step:nth-child(2) .step-num { background: var(--yy-teal-deep); box-shadow: 0 6px 0 rgba(11, 127, 117, .25); }
.step:nth-child(3) .step-num { background: var(--yy-purple); box-shadow: 0 6px 0 rgba(123, 94, 167, .25); }
.step h3 { margin-bottom: 6px; }
.step p { margin: 0; color: var(--yy-ink-soft); }

/* --------------------------------------------------------------------------
   FAQ (native <details>, enhanced by JS)
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq-item {
  background: var(--yy-cream);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color .18s ease, background-color .18s ease;
}
.faq-item[open] { border-color: var(--yy-teal); background: #fff; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  position: relative;
  border-radius: var(--radius-md);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px; top: 50%;
  width: 32px; height: 32px;
  margin-top: -16px;
  border-radius: 50%;
  background: var(--yy-teal);
  color: var(--yy-ink);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  line-height: 1;
  transition: transform .25s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:focus-visible { outline-offset: -3px; }
.faq-body { padding: 0 20px 18px; color: var(--yy-ink-soft); }
.faq-body p:last-child { margin: 0; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 100px) 0;
  background: linear-gradient(135deg, var(--yy-coral-deep) 0%, #E04E4E 60%, #D9463F 100%);
  color: #fff;
  text-align: center;
}
.cta-inner { position: relative; }
.cta-band h2 { color: #fff; max-width: 16em; margin-inline: auto; }
.cta-sub { max-width: 36em; margin: 0 auto 8px; font-size: 1.1rem; color: rgba(255, 255, 255, .92); }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--yy-ink);
  color: rgba(255, 255, 255, .85);
  padding: 44px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.footer-brand .logo-text { color: #fff; }
.footer-brand .logo-text em { color: var(--yy-sunny); }
.footer-brand p { margin: 8px 0 0; font-size: .95rem; }
.footer-contact { display: grid; gap: 6px; }
.footer-contact a, .footer-legal a { color: #fff; font-weight: 700; }
.footer-contact a:hover, .footer-legal a:hover { color: var(--yy-sunny); }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: background-color .18s ease;
}
.footer-social a:hover { background: rgba(255, 255, 255, .18); }
.footer-social svg { width: 20px; height: 20px; }
.footer-legal {
  grid-column: 1 / -1;
  margin: 12px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .92rem;
}

/* --------------------------------------------------------------------------
   Mobile sticky bar
   -------------------------------------------------------------------------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  display: none;
  gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -8px 24px rgba(43, 45, 66, .12);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky-bar .btn { flex: 1; min-height: 52px; }
.sticky-bar.is-visible { transform: translateY(0); }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .grid-serv, .grid-price, .steps { grid-template-columns: repeat(2, 1fr); }
  .serv-art { grid-column: 1 / -1; max-height: 320px; }
}

@media (max-width: 860px) {
  .hero-inner, .unde-inner, .ursitoare-inner { grid-template-columns: 1fr; }
  .hero { padding-bottom: 96px; text-align: left; }
  /* width: 100% is required: auto margins on a grid item otherwise shrink it to fit-content,
     and the hero slideshow's content is all absolutely positioned (zero intrinsic size) */
  .hero-art { width: 100%; max-width: 460px; margin: 16px auto 0; }
  .ursitoare-art { order: 2; width: 100%; max-width: 460px; margin-inline: auto; }
  .unde-art { width: 100%; max-width: 460px; margin-inline: auto; }
  .extras { grid-template-columns: 1fr; }
  .extras-art { width: 100%; max-width: 320px; margin-inline: auto; }
  .callout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 12px var(--gutter) 20px;
    background: var(--yy-cream);
    box-shadow: 0 16px 30px rgba(43, 45, 66, .12);
    display: none;
  }
  .site-nav.is-open { display: flex; }
  .site-nav ul { flex-direction: column; gap: 2px; }
  .site-nav li a { display: block; padding: 12px 14px; font-size: 1.05rem; }
  .header-cta { align-self: stretch; }

  .grid-serv, .grid-price, .steps { grid-template-columns: 1fr; }
  .price-card-featured { order: -1; }
  .sticky-bar { display: flex; }
  body.has-sticky-bar { padding-bottom: 84px; }
  .footer-inner { grid-template-columns: 1fr; }
  .sticker-exp { left: 0; }
  .sticker-price { right: 0; }
  .sticker strong { font-size: 1.25rem; }
  .cta-row .btn-lg { width: 100%; }
  .callout .btn { width: 100%; }
}

@media (max-width: 400px) {
  .extra { grid-template-columns: auto 1fr; }
  .extra-price { grid-column: 2; }
}

/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .card:hover, .btn:hover, .chip:hover { transform: none; }
}

/* ==========================================================================
   Photos, hero slideshow, gallery carousel, lightbox
   ========================================================================== */

/* Generic photo frame */
.foto {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--yy-cream-2);
  box-shadow: var(--shadow-soft);
}
.foto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foto-tilt {
  border: 10px solid #fff;
  transform: rotate(-2deg);
  transition: transform .3s ease;
}
.foto-tilt:hover { transform: rotate(0deg) scale(1.01); }

/* Servicii: photo card fills its grid cell */
.serv-art.foto { min-height: 260px; }
.serv-art.foto img { position: absolute; inset: 0; object-position: center 25%; }

/* Unde venim */
.unde-art.foto { aspect-ratio: 4 / 5; }
.unde-art.foto img { object-position: center 35%; }

/* Extras */
.extras-art.foto { aspect-ratio: 1 / 1; }

/* ---- Hero slideshow ---------------------------------------------------- */
.hero-slides {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 32px;
  overflow: hidden;
  border: 8px solid #fff;
  background: var(--yy-cream-2);
  box-shadow: var(--shadow-lift);
  transform: rotate(-2deg);
}
.hero-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .9s ease;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slide.is-active img { animation: kenburns 7s ease-out forwards; }
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-dots {
  position: absolute;
  left: 0; right: 0; bottom: 8px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 2px;
}
.hero-dots button {
  width: 32px; height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hero-dots button::before {
  content: "";
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, .35);
  transition: transform .2s ease, background-color .2s ease;
}
.hero-dots button[aria-selected="true"]::before { background: #fff; transform: scale(1.25); }
.hero-dots button:focus-visible { outline-color: #fff; outline-offset: -4px; border-radius: 50%; }

/* ---- Gallery carousel -------------------------------------------------- */
.section-galerie { padding-bottom: clamp(48px, 6vw, 80px); }
.galerie-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  max-width: none;
  margin-bottom: 8px;
}
.galerie-head h2 { margin-bottom: 0; }
.galerie-nav { display: flex; gap: 8px; flex-shrink: 0; }
.galerie-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 2px solid var(--yy-cream-2);
  background: #fff;
  color: var(--yy-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.galerie-arrow svg { width: 22px; height: 22px; }
.galerie-arrow:hover { background: var(--yy-sunny); border-color: var(--yy-sunny); transform: translateY(-2px); }

.galerie-track {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 16px 0 28px;
}
.galerie-track::-webkit-scrollbar { display: none; }
.galerie-track:focus-visible { outline-offset: -3px; }
.galerie-inner {
  display: flex;
  gap: 18px;
  padding-inline: max(var(--gutter), calc((100% - var(--container)) / 2 + var(--gutter)));
}
.galerie-item {
  flex: 0 0 300px;
  scroll-snap-align: start;
  scroll-margin-inline-start: max(var(--gutter), calc((100vw - var(--container)) / 2 + var(--gutter)));
  margin: 0;
}
.galerie-btn {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  padding: 0;
  border: 6px solid #fff;
  background: var(--yy-cream-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}
.galerie-btn img { width: 100%; height: 100%; object-fit: cover; }
.galerie-item:nth-child(even) .galerie-btn { transform: rotate(1.5deg); }
.galerie-item:nth-child(odd) .galerie-btn { transform: rotate(-1deg); }
.galerie-btn:hover { transform: translateY(-5px) rotate(0deg); box-shadow: var(--shadow-lift); }
.galerie-btn:focus-visible { outline-offset: 4px; }

/* ---- Lightbox ---------------------------------------------------------- */
.lightbox {
  border: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  background: transparent;
  color: #fff;
}
.lightbox[open] { display: grid; place-items: center; }
.lightbox::backdrop { background: rgba(43, 45, 66, .94); }
.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 900px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.lightbox-img {
  max-width: 100%;
  max-height: 78vh;
  width: auto; height: auto;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
}
.lightbox-caption { font-weight: 700; text-align: center; font-size: .95rem; padding-inline: 12px; }
.lightbox-close, .lightbox-arrow {
  position: fixed;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: #fff;
  color: var(--yy-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-soft);
  z-index: 2;
}
.lightbox-close svg, .lightbox-arrow svg { width: 22px; height: 22px; }
.lightbox-close { top: 16px; right: 16px; }
.lightbox-arrow { top: 50%; transform: translateY(-50%); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }
.lightbox-close:hover, .lightbox-arrow:hover { background: var(--yy-sunny); }
.lightbox-close:focus-visible, .lightbox-arrow:focus-visible { outline-color: var(--yy-sunny); }
html.has-lightbox { overflow: hidden; }

@media (max-width: 1024px) {
  .serv-art.foto { min-height: 320px; max-height: none; }
  .serv-art.foto img { object-position: center 30%; }
}
@media (max-width: 860px) {
  .hero-slides { transform: rotate(-1.5deg); }
  .extras-art.foto { max-width: 340px; }
}
@media (max-width: 760px) {
  .galerie-item { flex-basis: 78vw; }
  .galerie-head { flex-direction: column; align-items: flex-start; }
  .lightbox-arrow { top: auto; bottom: 16px; transform: none; }
  .lightbox-prev { left: calc(50% - 60px); }
  .lightbox-next { right: calc(50% - 60px); }
  .lightbox-img { max-height: 70vh; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide.is-active img { animation: none; }
  .foto-tilt:hover, .galerie-btn:hover { transform: none; }
}
