/* ============================================
   PETRUTA PHOTO — Stylesheet
   Paletă: Bleumarin profund + alb + accent roz
   ============================================ */

:root {
  --navy:        #1B2A4A;
  --navy-deep:   #131F38;
  --navy-soft:   #24375E;
  --pink:        #E84F8C;
  --pink-soft:   #FF7AAE;
  --ink:         #1B2A4A;
  --muted:       #6A7790;
  --line:        #E4E8F0;
  --bg:          #FFFFFF;
  --bg-alt:      #F6F8FC;
  --white:       #FFFFFF;
  --radius:      16px;
  --radius-sm:   10px;
  --shadow:      0 10px 40px rgba(27,42,74,.10);
  --shadow-sm:   0 4px 16px rgba(27,42,74,.08);
  --maxw:        1140px;
  --space:       clamp(64px, 9vw, 120px);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: 'Sora', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2.1rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.18rem; }

p { color: var(--muted); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 14px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .98rem;
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  font-family: inherit;
}
.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 24px rgba(232,79,140,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(232,79,140,.42); }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-2px); }
.btn-wapp { background: #25D366; color: #fff; box-shadow: 0 8px 24px rgba(37,211,102,.30); }
.btn-wapp:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(37,211,102,.4); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.18rem;
  color: var(--navy);
}
.brand span { color: var(--pink); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-weight: 500;
  font-size: .96rem;
  color: var(--navy);
  position: relative;
  transition: color .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--pink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 2px;
  background: var(--pink);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-wapp-mobile { display: none; }
.nav-wapp-mobile a { color: #25D366 !important; font-weight: 600 !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span {
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(232,79,140,.14), transparent 60%),
    radial-gradient(900px 600px at 10% 10%, rgba(36,55,94,.10), transparent 55%),
    var(--bg);
  padding: clamp(70px, 11vw, 130px) 0 clamp(60px, 9vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .accent { color: var(--pink); }
.hero-lead {
  font-size: 1.16rem;
  max-width: 520px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 38px;
  flex-wrap: wrap;
}
.hero-meta .stat strong {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
  color: var(--navy);
}
.hero-meta .stat span { font-size: .86rem; color: var(--muted); }

/* Hero visual — stacked photo frames */
.hero-visual { position: relative; height: 100%; min-height: 360px; }
.frame {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-alt);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame-1 { width: 64%; aspect-ratio: 3/4; top: 0; right: 4%; z-index: 2; }
.frame-2 { width: 52%; aspect-ratio: 4/5; bottom: 0; left: 0; z-index: 3; border: 5px solid #fff; }
.frame-badge {
  position: absolute;
  bottom: 18%; right: 0;
  background: #fff;
  border-radius: 14px;
  padding: 13px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 4;
}
.frame-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #25D366; }
.frame-badge small { font-weight: 600; color: var(--navy); font-size: .82rem; }

/* ---------- Sections ---------- */
section { scroll-margin-top: 90px; }
.section { padding: var(--space) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 14px; font-size: 1.06rem; }

/* ---------- Feature cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.card-icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: rgba(232,79,140,.10);
  margin-bottom: 18px;
}
.card-icon svg { width: 25px; height: 25px; stroke: var(--pink); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .95rem; }

/* ---------- Screenshots strip ---------- */
.shots { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 12px; }
.shot {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  aspect-ratio: 16/10;
  background: var(--bg-alt);
}
.shot img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-soft) 100%);
  border-radius: 24px;
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(500px 240px at 85% 0%, rgba(232,79,140,.30), transparent 60%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 28px; }

/* ---------- Gallery ---------- */
.gallery-head { text-align: center; max-width: 660px; margin: 0 auto 50px; }
.gallery {
  columns: 3;
  column-gap: 16px;
}
.gallery figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  box-shadow: var(--shadow-sm);
  background: var(--bg-alt);
}
.gallery img {
  width: 100%;
  transition: transform .4s ease;
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figure::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(27,42,74,.35), transparent 50%);
  opacity: 0;
  transition: opacity .3s;
}
.gallery figure:hover::after { opacity: 1; }
.gallery-empty {
  text-align: center;
  padding: 70px 20px;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(19,31,56,.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 94vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none; cursor: pointer;
  color: #fff; font-size: 1.5rem;
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none; cursor: pointer;
  color: #fff; font-size: 1.6rem;
  display: grid; place-items: center;
  transition: background .2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ---------- Feature rows ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 46px 0;
}
.feature-row:nth-child(even) .feature-text { order: 2; }
.feature-text .eyebrow { margin-bottom: 10px; }
.feature-text h2 { margin-bottom: 16px; }
.feature-text ul { list-style: none; margin-top: 20px; }
.feature-text li {
  display: flex; align-items: flex-start; gap: 11px;
  margin-bottom: 13px;
  color: var(--navy);
  font-weight: 500;
}
.feature-text li svg { width: 21px; height: 21px; stroke: var(--pink); flex-shrink: 0; margin-top: 2px; }
.feature-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
  background: var(--bg-alt);
}
.feature-img img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .ico {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: rgba(232,79,140,.10);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-item .ico svg { width: 22px; height: 22px; stroke: var(--pink); }
.contact-item small { color: var(--muted); display: block; font-size: .8rem; }
.contact-item strong { color: var(--navy); font-weight: 600; font-size: 1.02rem; }

.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: .85rem;
  color: var(--muted);
  margin-top: 4px;
}
.form-status { margin-top: 14px; font-weight: 500; font-size: .95rem; }
.form-status.ok { color: #1a9e54; }
.form-status.err { color: #d63b3b; }

/* ---------- Legal / TCG ---------- */
.legal { max-width: 820px; margin: 0 auto; }
.legal h2 { margin: 42px 0 16px; padding-top: 10px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { margin: 24px 0 10px; color: var(--navy); }
.legal p, .legal li { color: var(--muted); margin-bottom: 12px; }
.legal ul { margin: 0 0 16px 22px; }
.legal li { margin-bottom: 8px; }
.legal .updated {
  display: inline-block;
  background: var(--bg-alt);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 30px;
}
.toc {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.toc strong { display: block; margin-bottom: 12px; color: var(--navy); font-family: 'Sora', sans-serif; }
.toc ul { list-style: none; }
.toc li { margin-bottom: 8px; }
.toc a { color: var(--pink); font-weight: 500; }
.toc a:hover { text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #fff;
  margin-bottom: 14px;
}
.footer-brand span { color: var(--pink-soft); }
.footer-col p { font-size: .92rem; color: rgba(255,255,255,.6); max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,.7); font-size: .92rem; transition: color .15s; }
.footer-col a:hover { color: var(--pink-soft); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Floating WhatsApp ---------- */
.wapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  z-index: 200;
  transition: transform .2s;
}
.wapp-float:hover { transform: scale(1.08); }
.wapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 340px; max-width: 420px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
  .feature-row { grid-template-columns: 1fr; gap: 28px; padding: 30px 0; }
  .feature-row:nth-child(even) .feature-text { order: 0; }
}

@media (max-width: 720px) {
  .nav-links {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform .35s cubic-bezier(.4,0,.2,1);
    z-index: -1;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line); width: 100%; }
  .nav-links a.active::after { display: none; }
  .nav-wapp-mobile { display: block !important; }
  .hamburger { display: flex; }
  .nav-cta .btn-ghost { display: none; }
  .nav-cta .btn-primary { display: none; }
  .shots { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 460px) {
  .cards { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero-meta { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================
   ALBUME — listare galerie + filtre + cautare
   ============================================ */
.album-search {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 22px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 12px 20px;
  transition: border-color .2s, box-shadow .2s;
}
.album-search:focus-within { border-color: var(--pink); box-shadow: 0 4px 18px rgba(232,79,140,.12); }
.album-search svg { width: 19px; height: 19px; flex-shrink: 0; }
.album-search input {
  border: none; outline: none; flex: 1;
  font-family: inherit; font-size: .98rem; color: var(--ink);
  background: transparent;
}
#album-clear {
  border: none; background: none; cursor: pointer;
  color: var(--muted); font-size: 1.3rem; line-height: 1;
  padding: 0 4px; display: none;
}
#album-clear.show { display: block; }

.album-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 10px; margin-bottom: 46px;
}
.filter-chip {
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--navy);
  padding: 9px 20px;
  border-radius: 100px;
  font-family: inherit;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: all .18s ease;
}
.filter-chip:hover { border-color: var(--pink); color: var(--pink); }
.filter-chip.active { background: var(--pink); border-color: var(--pink); color: #fff; }

.albums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.album-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.album-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.album-card.hide { display: none; }
.album-cover {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-alt);
}
.album-cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.album-card:hover .album-cover img { transform: scale(1.06); }
.album-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}
.album-info { padding: 22px 24px 26px; }
.album-info h3 { color: var(--navy); margin-bottom: 6px; }
.album-count {
  font-size: .88rem;
  color: var(--pink);
  font-weight: 600;
  position: relative;
  padding-top: 14px;
  display: inline-block;
}
.album-info { position: relative; }
.album-info::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--line);
  margin-bottom: 14px;
}
.albums-empty-search {
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
  font-size: 1.02rem;
}

/* Album single header + back link */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--muted); font-weight: 600; font-size: .92rem;
  margin-bottom: 30px;
  transition: color .15s;
}
.back-link:hover { color: var(--pink); }
.back-link svg { width: 18px; height: 18px; }
.album-header { margin-bottom: 44px; }
.album-header h1 { margin-bottom: 10px; }

/* ============================================
   SOCIAL BUTTONS
   ============================================ */
.contact-social { padding-top: 22px; margin-top: 4px; }
.contact-social-label {
  display: block;
  font-size: .8rem; font-weight: 600;
  color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: 12px;
}
.contact-social-links { display: flex; gap: 12px; }
.social-btn {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--pink);
  color: #fff;
  transition: transform .18s ease, opacity .18s;
}
.social-btn:hover { transform: translateY(-3px); opacity: .9; }
.social-btn svg { width: 21px; height: 21px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.social-btn.dark {
  background: rgba(255,255,255,.1);
  width: 40px; height: 40px;
}
.social-btn.dark:hover { background: var(--pink); }
.social-btn.dark svg { width: 19px; height: 19px; }

/* ============================================
   COOKIE BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  max-width: 540px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 50px rgba(27,42,74,.22);
  padding: 22px 24px;
  z-index: 500;
  transform: translateY(160%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p {
  font-size: .92rem;
  color: var(--muted);
  margin-bottom: 16px;
}
.cookie-banner p a { color: var(--pink); font-weight: 500; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 22px; font-size: .92rem; }
.btn-small-ghost {
  background: transparent;
  border: 1.5px solid var(--line);
  color: var(--navy);
}
.btn-small-ghost:hover { border-color: var(--navy); }

@media (max-width: 940px) {
  .albums { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .albums { grid-template-columns: 1fr; }
  .cookie-banner { left: 14px; right: 14px; bottom: 14px; padding: 18px 20px; }
}

/* ============================================
   CONTACT — varianta doar cu card (fara formular)
   ============================================ */
.contact-single {
  display: block;
  max-width: 480px;
  margin: 0 auto;
}
.contact-single .contact-card {
  padding: 36px;
}
.contact-wapp-cta {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  font-size: 1.02rem;
  padding: 16px 26px;
}
.contact-single .contact-social {
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 24px;
}
.contact-single .contact-social-links {
  justify-content: center;
}
