/* ============================================================
   UNICORN PRIME AGENCY — foaie de stil
   Paletă aur pe negru, layout condus de fotografii mari
   ============================================================ */

:root {
  --bg:        #09090a;
  --bg-2:      #0e0e10;
  --panel:     #131316;
  --ink:       #f4efe2;
  --muted:     #a29c8b;
  --muted-2:   #726d60;
  --line:      rgba(212, 175, 55, 0.16);
  --line-soft: rgba(244, 239, 226, 0.07);

  --gold-1: #f8e9b0;
  --gold-2: #e6c463;
  --gold-3: #c9a233;
  --gold-4: #97761f;
  --gold-grad: linear-gradient(135deg, #f8e9b0 0%, #e6c463 38%, #c9a233 66%, #97761f 100%);
  --gold-line: linear-gradient(90deg, transparent, var(--gold-3), transparent);

  --shadow: 0 24px 60px -20px rgba(0,0,0,.8);
  --shadow-gold: 0 20px 50px -24px rgba(201,162,51,.45);

  --maxw: 1200px;
  --radius: 4px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-accent:  "Marcellus", Georgia, serif;
  --font-body:    "Manrope", system-ui, sans-serif;
}

*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  letter-spacing: .01em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body::before {
  content:""; position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 600px at 80% -8%, rgba(201,162,51,.12), transparent 60%),
    radial-gradient(700px 500px at 8% 108%, rgba(151,118,31,.10), transparent 60%),
    var(--bg);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold-3); color: #0a0a0a; }

/* ---------- utilitare ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.eyebrow {
  font-family: var(--font-accent); text-transform: uppercase;
  letter-spacing: .42em; font-size: .72rem; color: var(--gold-2); display: inline-block;
}
.eyebrow.center { display: block; text-align: center; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hairline { height: 1px; border: 0; background: var(--gold-line); opacity: .7; }
h1,h2,h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; }

.section { padding: clamp(4.5rem, 9vw, 8rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(2.1rem, 5.5vw, 3.6rem); letter-spacing: .01em; margin: .6rem 0 1rem; }
.section-lead { color: var(--muted); font-size: 1.06rem; max-width: 56ch; }
.section-head.center .section-lead { margin-inline: auto; }

/* ---------- butoane ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .65rem;
  padding: .95rem 1.9rem; font-family: var(--font-accent);
  letter-spacing: .16em; text-transform: uppercase; font-size: .78rem;
  border-radius: var(--radius); border: 1px solid transparent;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}
.btn:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.btn-gold { background: var(--gold-grad); color: #14100a; box-shadow: var(--shadow-gold); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 26px 54px -20px rgba(201,162,51,.6); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: rgba(255,255,255,.03); }
.btn-ghost:hover { border-color: var(--gold-3); color: var(--gold-1); transform: translateY(-3px); }
.btn .arw { transition: transform .3s ease; }
.btn:hover .arw { transform: translateX(4px); }

/* ---------- strat foto (gold duotone unificator) ---------- */
.ph { position: relative; overflow: hidden; background: #100f0d; }
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.1s cubic-bezier(.16,1,.3,1); }
.ph::before { /* vignetă întunecată pentru lizibilitate */
  content:""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(9,9,10,.15) 0%, rgba(9,9,10,.25) 45%, rgba(9,9,10,.85) 100%);
}
.ph::after { /* tentă aurie care leagă orice fotografie de brand */
  content:""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(201,162,51,.20), rgba(151,118,31,.05) 55%, rgba(9,9,10,.15));
  mix-blend-mode: soft-light;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background .4s ease, backdrop-filter .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent; padding: 1.1rem 0;
}
.site-header.scrolled { background: rgba(9,9,10,.82); backdrop-filter: blur(14px); border-bottom-color: var(--line); padding: .6rem 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: .8rem; }
.brand img { height: 46px; width: auto; transition: height .4s ease; }
.site-header.scrolled .brand img { height: 38px; }
.brand-name { font-family: var(--font-accent); letter-spacing: .3em; font-size: .82rem; text-transform: uppercase; color: var(--ink); }
.brand-name span { color: var(--gold-2); }
.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; padding: 0; }
.nav-links a {
  font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .18em;
  font-size: .78rem; color: var(--muted); position: relative; padding: .25rem 0; transition: color .3s ease;
}
.nav-links a::after { content:""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--gold-grad); transition: width .3s ease; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold-1); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }
.nav-links .btn { padding: .7rem 1.4rem; color: #14100a; }
.nav-links .btn:hover { color: #14100a; }
.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 40px; position: relative; z-index: 70; }
.nav-toggle span { position: absolute; left: 8px; right: 8px; height: 1.5px; background: var(--gold-1); transition: transform .35s ease, opacity .25s ease, top .35s ease; }
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 26px; }
.nav-toggle.open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ============================================================
   HERO SLIDER (fotografii mari full-screen)
   ============================================================ */
.hero-slider { position: relative; height: 100svh; min-height: 620px; overflow: hidden; }
.slides { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s ease, visibility 1.1s ease; }
.slide.active { opacity: 1; visibility: visible; }
.slide .ph { position: absolute; inset: 0; height: 100%; }
.slide.active .ph img { animation: kenburns 7.5s ease-out both; }
@keyframes kenburns { from { transform: scale(1.02); } to { transform: scale(1.14); } }

.slide-content {
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column; justify-content: center;
  width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto;
  text-align: left; padding-top: 4rem;
}
.slide-content .inner { max-width: 760px; }
.slide.active .slide-content .eyebrow { animation: rise .9s ease .25s both; }
.slide.active .slide-content h1 { animation: rise .9s ease .35s both; }
.slide.active .slide-content p { animation: rise .9s ease .45s both; }
.slide.active .slide-content .hero-cta { animation: rise .9s ease .55s both; }
.slide-content h1 {
  font-size: clamp(2.6rem, 7.5vw, 6rem); line-height: .98; margin: .7rem 0 1rem;
  text-shadow: 0 12px 40px rgba(0,0,0,.55);
}
.slide-content h1 .accent { display: block; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.slide-content p { max-width: 54ch; color: #e9e4d6; font-size: clamp(1rem, 2.2vw, 1.2rem); text-shadow: 0 4px 20px rgba(0,0,0,.6); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
@keyframes rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* controale slider */
.slider-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 6; display: flex; gap: .8rem; }
.slider-dots button {
  width: 34px; height: 3px; border: 0; padding: 0; border-radius: 2px;
  background: rgba(244,239,226,.28); position: relative; overflow: hidden; transition: background .3s ease;
}
.slider-dots button[aria-current="true"] { background: rgba(244,239,226,.28); }
.slider-dots button[aria-current="true"]::after {
  content:""; position: absolute; inset: 0; background: var(--gold-grad);
  transform-origin: left; animation: fill 6s linear forwards;
}
@keyframes fill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 6;
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  background: rgba(9,9,10,.35); backdrop-filter: blur(6px); color: var(--gold-1);
  display: grid; place-items: center; font-size: 1.2rem; transition: background .3s ease, border-color .3s ease, transform .3s ease;
}
.slider-arrow:hover { background: rgba(9,9,10,.7); border-color: var(--gold-3); }
.slider-arrow.prev { left: 1.2rem; }
.slider-arrow.next { right: 1.2rem; }
.scroll-cue {
  position: absolute; bottom: 1.4rem; right: 1.6rem; z-index: 6;
  font-family: var(--font-accent); letter-spacing: .3em; font-size: .6rem; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .6rem;
}
.scroll-cue .dot { width: 1px; height: 34px; background: linear-gradient(var(--gold-3), transparent); animation: cue 2.2s ease-in-out infinite; }
@keyframes cue { 0%,100%{transform:scaleY(.5);opacity:.4;} 50%{transform:scaleY(1);opacity:1;} }

/* ============================================================
   BANDĂ MARQUEE
   ============================================================ */
.marquee-band { border-block: 1px solid var(--line); background: linear-gradient(var(--bg-2), var(--bg)); padding: 1.3rem 0; overflow: hidden; }
.marquee { display: flex; gap: 3.5rem; white-space: nowrap; width: max-content; animation: slide 28s linear infinite; font-family: var(--font-accent); letter-spacing: .28em; text-transform: uppercase; font-size: .82rem; color: var(--muted); }
.marquee span { display: inline-flex; align-items: center; gap: 3.5rem; }
.marquee b { color: var(--gold-2); font-weight: 400; }
.marquee .sep { color: var(--gold-4); }
@keyframes slide { to { transform: translateX(-50%); } }

/* ============================================================
   CONTOARE (animate)
   ============================================================ */
.stats { border-block: 1px solid var(--line-soft); background: linear-gradient(180deg, var(--bg-2), var(--bg)); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; padding: clamp(2.5rem,5vw,3.5rem) 0; }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content:""; position: absolute; left: 0; top: 18%; bottom: 18%; width: 1px; background: var(--line-soft); }
.stat .num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lab { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: var(--muted); margin-top: .7rem; }

/* ============================================================
   CARDURI SERVICII (cu fotografie mare)
   ============================================================ */
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.scard {
  border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--panel), var(--bg-2));
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
  display: flex; flex-direction: column;
}
.scard:hover { transform: translateY(-6px); border-color: var(--line); box-shadow: var(--shadow); }
.scard .scard-media { aspect-ratio: 16/10; }
.scard:hover .scard-media img { transform: scale(1.06); }
.scard-body { padding: 1.7rem 1.6rem 1.9rem; }
.scard-body h3 { font-size: 1.55rem; color: var(--ink); margin-bottom: .5rem; }
.scard-body p { color: var(--muted); font-size: .95rem; margin-bottom: 1rem; }
.scard .kw { font-family: var(--font-accent); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-3); }

/* listă detaliată de servicii (pagina Servicii) */
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem,5vw,3.5rem); align-items: center; padding: clamp(2rem,4vw,3.5rem) 0; border-top: 1px solid var(--line-soft); }
.service-block:first-of-type { border-top: 0; }
.service-block.reverse .service-media { order: 2; }
.service-media { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); }
.service-media:hover img { transform: scale(1.05); }
.service-num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,3.6rem); line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.service-block h3 { font-size: clamp(1.7rem,3.4vw,2.4rem); margin: .3rem 0 .9rem; }
.service-block .service-text > p { color: var(--muted); margin-bottom: 1.3rem; max-width: 46ch; }
.tick-list { list-style: none; padding: 0; display: grid; gap: .7rem; }
.tick-list li { position: relative; padding-left: 1.9rem; color: var(--ink); font-size: .98rem; }
.tick-list li::before { content:""; position: absolute; left: 0; top: .65em; width: 10px; height: 1px; background: var(--gold-grad); }

/* ============================================================
   BANDĂ EVENIMENTE (parallax foto)
   ============================================================ */
.feature-band { position: relative; overflow: hidden; padding: clamp(5rem,10vw,9rem) 0; border-block: 1px solid var(--line); }
.feature-band .ph { position: absolute; inset: 0; z-index: 0; }
.feature-band .ph img { position: absolute; inset: 0; }
.feature-band .wrap { position: relative; z-index: 2; text-align: center; }
.events-poetry { display: grid; gap: .85rem; max-width: 720px; margin: 2rem auto 2.5rem; }
.events-poetry p { font-family: var(--font-display); font-style: italic; font-size: clamp(1.15rem,2.6vw,1.5rem); color: var(--ink); text-shadow: 0 4px 20px rgba(0,0,0,.5); }
.events-poetry p span { color: var(--gold-2); font-style: normal; }

/* carduri experiențe (pagina Evenimente) */
.exp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.4rem; }
.ecard { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; border: 1px solid var(--line-soft); }
.ecard .ph { position: absolute; inset: 0; height: 100%; }
.ecard:hover .ph img { transform: scale(1.07); }
.ecard-body { position: absolute; inset: auto 0 0 0; z-index: 3; padding: 1.8rem 1.6rem; }
.ecard-body .star { color: var(--gold-2); font-size: 1rem; }
.ecard-body h4 { font-family: var(--font-display); font-size: 1.55rem; color: #fff; margin: .4rem 0 .35rem; }
.ecard-body p { color: #e3ddcd; font-size: .95rem; }

/* ============================================================
   CTA + CONTACT
   ============================================================ */
.cta-band { text-align: center; padding: clamp(4.5rem,9vw,7.5rem) 0; }
.cta-band h2 { font-size: clamp(2.2rem,6vw,4rem); margin-bottom: 1rem; }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 2rem; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-card { background: linear-gradient(160deg, var(--panel), var(--bg-2)); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(2rem,4vw,3rem); }
.contact-person { font-family: var(--font-display); font-size: 1.7rem; color: var(--gold-1); margin-bottom: .2rem; }
.contact-role { font-family: var(--font-accent); letter-spacing: .2em; text-transform: uppercase; font-size: .72rem; color: var(--muted); margin-bottom: 1.8rem; }
.contact-list { list-style: none; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: center; }
.contact-list .ic { width: 40px; height: 40px; flex: none; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--gold-2); }
.contact-list .ic svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.4; }
.contact-list a, .contact-list span { color: var(--ink); font-size: 1rem; word-break: break-word; }
.contact-list a:hover { color: var(--gold-1); }
.contact-list small { display: block; color: var(--muted); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.form { display: grid; gap: 1.1rem; }
.form label { font-family: var(--font-accent); letter-spacing: .12em; text-transform: uppercase; font-size: .68rem; color: var(--muted); display: grid; gap: .5rem; }
.form input, .form textarea { font-family: var(--font-body); background: var(--bg); border: 1px solid var(--line-soft); border-radius: var(--radius); color: var(--ink); padding: .85rem 1rem; font-size: .98rem; transition: border-color .3s ease, box-shadow .3s ease; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold-3); box-shadow: 0 0 0 3px rgba(201,162,51,.12); }
.form textarea { resize: vertical; min-height: 130px; }
.form-note { color: var(--muted-2); font-size: .82rem; }

/* ============================================================
   PAGE HERO (pagini interioare, cu fotografie)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; padding: clamp(9rem,16vw,13rem) 0 clamp(3.5rem,7vw,6rem); text-align: center; border-bottom: 1px solid var(--line); }
.page-hero .ph { position: absolute; inset: 0; z-index: 0; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem,8vw,5rem); letter-spacing: .02em; margin: .6rem 0 1rem; text-shadow: 0 10px 40px rgba(0,0,0,.5); }
.page-hero p { color: #e6e0d1; max-width: 60ch; margin: 0 auto; font-size: 1.08rem; text-shadow: 0 4px 20px rgba(0,0,0,.5); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3.5rem,7vw,5rem) 0 2.5rem; background: linear-gradient(var(--bg), #060607); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; align-items: start; }
.footer-brand img { height: 64px; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); max-width: 34ch; font-size: .95rem; }
.footer-col h5 { font-family: var(--font-accent); text-transform: uppercase; letter-spacing: .2em; font-size: .72rem; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: .7rem; }
.footer-col a { color: var(--muted); font-size: .95rem; transition: color .3s ease; }
.footer-col a:hover { color: var(--gold-1); }
.footer-bottom { margin-top: clamp(2.5rem,5vw,3.5rem); padding-top: 1.6rem; border-top: 1px solid var(--line-soft); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: var(--muted-2); font-size: .82rem; }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold-1); }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1rem; }
  .stat:nth-child(3)::before { display: none; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 1.8rem; padding: 4rem 2.2rem; background: rgba(10,10,11,.97);
    backdrop-filter: blur(16px); border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .45s cubic-bezier(.16,1,.3,1);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
  .slide-content { text-align: left; }
  .service-block { grid-template-columns: 1fr; gap: 1.2rem; }
  .service-block.reverse .service-media { order: 0; }
  .service-media { aspect-ratio: 16/10; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .slider-arrow { display: none; }
}
@media (max-width: 480px) {
  .btn { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .slide.active .ph img { animation: none; }
  .slider-dots button[aria-current="true"]::after { animation: none; transform: scaleX(1); }
}
