/* =========================
   RUSPRIM – PREMIUM (paletă 3 culori)
   ========================= */

   :root{
    --sand: #d9d2c8;
    --aqua: #a8d6d7;
    --teal: #2f7f7b;
  
    --ink: #0b0f14;
    --muted: rgba(11,15,20,.62);
    --line: rgba(0,0,0,.10);
  
    --radius: 22px;
    --shadow: 0 22px 70px rgba(0,0,0,.12);
    --shadow2: 0 12px 34px rgba(0,0,0,.10);
  
    --glass: rgba(255,255,255,.58);
    --glass2: rgba(255,255,255,.78);
  
    --dark: #0b0f12;
    --dark2:#0e1316;
    --on-dark: rgba(255,255,255,.92);
    --on-dark-muted: rgba(255,255,255,.74);
    --dark-line: rgba(255,255,255,.10);
  }
  
  *{ box-sizing:border-box; }
  html,body{ height:100%; }
  body{
    margin:0;
    font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    color: var(--ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color .35s ease, color .35s ease;
  }
  a{ color: inherit; text-decoration: none; }
  img{ max-width:100%; display:block; }
  .container{ width:min(1120px, calc(100% - 44px)); margin:0 auto; }
  .section{ padding: 86px 0; }
  
  /* THEME */
  body.theme-sand{ --headerTint: rgba(217,210,200,.55); --accent: var(--teal); }
  body.theme-aqua{ --headerTint: rgba(168,214,215,.55); --accent: var(--teal); }
  body.theme-teal{ --headerTint: rgba(47,127,123,.20); --accent: var(--teal); }
  
  /* HEADER */
  .site-header{
    position: fixed;
    top:0; left:0; right:0;
    z-index: 50;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
  }
  .site-header::before{
    content:"";
    position:absolute;
    inset:0;
    background: var(--headerTint);
    opacity: 0;
    backdrop-filter: blur(10px);
    transition: opacity .25s ease;
    pointer-events:none;
  }
  .site-header.scrolled{
    border-bottom-color: rgba(0,0,0,.06);
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
  }
  .site-header.scrolled::before{ opacity: 1; }
  
  .nav{
    position: relative;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 16px;
    padding: 14px 0;
  }
  .brand{
    display:flex;
    align-items:center;
    gap: 12px;
    min-width: 260px;
  }
  .brand-logo{
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0,0,0,.18));
  }
  .brand-name{
    font-weight: 900;
    letter-spacing: .02em;
    font-size: 18px;
    line-height: 1.1;
    color: rgba(0,0,0,.82);
  }
  .brand-tag{
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(0,0,0,.52);
  }
  .site-header.on-hero .brand-name{ color: rgba(255,255,255,.95); }
  .site-header.on-hero .brand-tag{ color: rgba(255,255,255,.72); }
  .site-header.on-hero .brand-logo{ filter: drop-shadow(0 12px 26px rgba(0,0,0,.40)); }
  
  .menu{
    display:flex;
    gap: 10px;
    align-items:center;
    flex-wrap: wrap;
    justify-content:flex-end;
  }
  .menu a{
    font-weight: 850;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 999px;
    color: rgba(0,0,0,.70);
    transition: background .18s ease, color .18s ease, transform .18s ease;
  }
  .site-header.on-hero .menu a{ color: rgba(255,255,255,.92); }
  
  .menu a:hover{
    transform: translateY(-1px);
    background: rgba(0,0,0,.06);
  }
  .site-header.on-hero .menu a:hover{ background: rgba(0,0,0,.28); }
  
  .nav-contact{
    background: transparent !important;
    box-shadow: none !important;
    color: rgba(0,0,0,.70) !important;
  }
  .site-header.on-hero .menu a.nav-contact{ color: rgba(255,255,255,.92) !important; }
  
  .nav-call{
    display:inline-flex;
    align-items:center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.60);
    backdrop-filter: blur(10px);
    font-weight: 900;
    color: rgba(0,0,0,.86);
  }
  .site-header.on-hero .nav-call{
    border-color: rgba(255,255,255,.18);
    background: rgba(255,255,255,.14);
    color: rgba(255,255,255,.92);
  }
  .nav-call .ico{ width: 18px; height: 18px; display:inline-grid; place-items:center; }
  .nav-call svg{ width: 18px; height: 18px; color: currentColor; }
  
  .burger{
    display:none;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(10px);
  }
  .site-header.on-hero .burger{
    border-color: rgba(255,255,255,.22);
    background: rgba(255,255,255,.14);
  }
  .burger span{
    display:block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: rgba(0,0,0,.78);
  }
  .site-header.on-hero .burger span{ background: rgba(255,255,255,.92); }
  
  /* HERO */
  .hero{
    position: relative;
    min-height: 100vh;
    padding-top: 96px;
    overflow: hidden;
    background: #111;
  }
  .hero-slides{ position:absolute; inset:0; }
  .hero-slide{
    position:absolute; inset:0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 1.2s ease, transform 3.2s ease;
  }
  .hero-slide.is-active{ opacity: 1; transform: scale(1.00); }
  .hero-vignette{
    position:absolute; inset:0;
    background: radial-gradient(ellipse at center,
      rgba(0,0,0,0) 60%,
      rgba(0,0,0,.10) 80%,
      rgba(0,0,0,.20) 100%);
    pointer-events:none;
  }
  .hero-inner{
    position: relative;
    z-index: 2;
    min-height: calc(100vh - 96px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding: 44px 0 62px;
  }
  .hero-card{
    width: min(720px, 92vw);
    padding: 18px 18px 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.20);
    backdrop-filter: blur(10px);
    box-shadow: 0 26px 90px rgba(0,0,0,.22);
    text-align:center;
    color: #fff;
  }
  .kicker{
    display:inline-block;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.10);
    letter-spacing: .20em;
    font-weight: 900;
    font-size: 11px;
    text-transform: uppercase;
  }
  .hero h1{
    margin: 14px 0 10px;
    font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
    font-weight: 700;
    font-size: clamp(34px, 5.0vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.03em;
    text-shadow: 0 14px 50px rgba(0,0,0,.45);
  }
  .hero-sub{
    margin: 0 auto;
    max-width: 56ch;
    color: rgba(255,255,255,.92);
    line-height: 1.75;
    font-weight: 480;
    font-size: 16px;
    text-shadow: 0 12px 40px rgba(0,0,0,.35);
  }
  .hero-cta{
    margin-top: 16px;
    display:flex;
    justify-content:center;
    gap: 10px;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap: 10px;
    padding: 11px 16px;
    border-radius: 999px;
    font-weight: 850;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease;
    border: 1px solid transparent;
  }
  .btn:hover{ transform: translateY(-1px); }
  .btn-ghost{
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.24);
    color: #fff;
  }
  .btn-ghost:hover{ background: rgba(255,255,255,.16); }
  .btn-solid{
    background: rgba(255,255,255,.92);
    color: rgba(0,0,0,.86);
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 20px 55px rgba(0,0,0,.22);
  }
  .btn-solid:hover{ background: #fff; }
  
  .scroll-hint{
    position:absolute; left:0; right:0; bottom: 22px;
    display:flex; justify-content:center; opacity: .9;
  }
  .scroll-hint span{
    width: 28px; height: 46px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.34);
    position: relative;
  }
  .scroll-hint span::after{
    content:"";
    width:6px; height:6px; border-radius: 50%;
    background:#fff; position:absolute; left:50%; top:12px;
    transform: translateX(-50%);
    animation: dot 1.2s infinite ease;
  }
  @keyframes dot{
    0%{ opacity:.2; transform:translate(-50%,0); }
    60%{ opacity:1; transform:translate(-50%,12px); }
    100%{ opacity:.2; transform:translate(-50%,0); }
  }
  
  /* HERO BAND */
  .hero-band{
    position: relative;
    padding: 22px 0;
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(245,247,248,.92));
    border-top: 1px solid rgba(255,255,255,.18);
    border-bottom: 1px solid rgba(0,0,0,.05);
  }
  .band-inner{ display:flex; align-items:center; justify-content:center; }
  .band-split{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: stretch;
  }
  .band-copy{
    padding: 24px 8px;
    max-width: 620px;
    display:flex;
    align-items: center;
  }
  .band-center{ width:100%; }
  .band-eyebrow{
    font-weight: 900;
    letter-spacing: .18em;
    font-size: 11px;
    color: rgba(0,0,0,.55);
  }
  .band-h{
    margin: 14px 0 12px;
    font-size: 30px;
    letter-spacing: -0.03em;
    line-height: 1.22;
    font-weight: 650;
    font-family: ui-serif, Georgia, "Times New Roman", serif;
  }
  .band-sub{
    margin: 0;
    color: rgba(0,0,0,.60);
    font-size: 17px;
    font-weight: 480;
    line-height: 1.8;
    max-width: 52ch;
  }
  .band-why{
    margin-top: 20px;
    padding: 18px 22px;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.06);
    background: rgba(255,255,255,.82);
  }
  .band-why-title{ font-weight: 900; margin-bottom: 8px; color: rgba(0,0,0,.82); }
  .band-why-list{ margin: 0; padding-left: 18px; color: rgba(0,0,0,.64); line-height: 1.9; font-weight: 460; }
  .band-video{ display:flex; align-items: stretch; }
  .video-frame{
    width: 100%;
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.04);
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
    position: relative;
  }
  .video{ width: 100%; height: 100%; display:block; object-fit: cover; }
  .hero-band .container{ width: min(1320px, calc(100% - 48px)); }
  
  /* SECTION HEAD */
  .section-head h2{
    margin:0;
    font-size: 34px;
    letter-spacing: -0.03em;
    position: relative;
    padding-bottom: 10px;
  }
  .section-head h2::after{
    content:"";
    position:absolute;
    left:0;
    bottom: 0;
    width: 64px;
    height: 2px;
    background: rgba(0,0,0,.14);
  }
  .section-head p{
    margin:12px 0 0;
    color: var(--muted);
    line-height: 1.8;
    max-width: 72ch;
    font-weight: 520;
  }
  
  /* ABOUT */
  .section-about{
    background: linear-gradient(180deg, rgba(217,210,200,.18), rgba(255,255,255,1));
    border-top: 1px solid rgba(0,0,0,.05);
  }
  .about-text p{
    margin: 14px 0 0;
    color: rgba(0,0,0,.62);
    line-height: 1.9;
    font-weight: 460;
    max-width: 92ch;
  }
  .about-panels{
    margin-top: 18px;
    display:grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: stretch;
  }
  .why-card, .values-card{
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.80);
    box-shadow: var(--shadow2);
    padding: 18px;
  }
  .why-kicker{
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 11px;
    color: rgba(0,0,0,.55);
  }
  .why-title{ margin: 10px 0 8px; font-size: 20px; letter-spacing: -0.02em; }
  .why-sub{ margin: 0 0 14px; color: rgba(0,0,0,.62); line-height: 1.85; }
  .why-points{ display:grid; gap: 12px; }
  .why-point{ display:flex; gap: 10px; align-items:flex-start; }
  .why-ico{
    width: 38px; height: 38px;
    border-radius: 14px;
    background: rgba(47,127,123,.10);
    border: 1px solid rgba(47,127,123,.18);
    display:grid;
    place-items:center;
    flex: 0 0 auto;
  }
  .why-ico svg{ width: 20px; height: 20px; color: rgba(0,0,0,.78); }
  .why-h{ font-weight: 900; color: rgba(0,0,0,.82); }
  .why-d{ margin-top: 4px; color: rgba(0,0,0,.60); line-height: 1.7; font-weight: 460; }
  
  .values-title{ font-weight: 1000; font-size: 18px; letter-spacing: -0.02em; margin-bottom: 10px; }
  .values-list{ display:grid; gap: 10px; }
  .val{ display:flex; align-items:center; gap: 10px; color: rgba(0,0,0,.72); font-weight: 650; }
  .val-ico{ width: 22px; height: 22px; display:inline-grid; place-items:center; color: rgba(0,0,0,.78); }
  .val-ico svg{ width: 22px; height: 22px; }
  
  /* VIDEO DIVIDER */
  .section-divider-video{
    padding: 26px 0 10px;
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(217,210,200,.12));
    border-top: 1px solid rgba(0,0,0,.05);
    border-bottom: 1px solid rgba(0,0,0,.04);
  }
  .divider-video{
    position: relative;
    height: 220px;
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(0,0,0,.03);
    box-shadow: 0 18px 55px rgba(0,0,0,.08);
  }
  .divider-video--tall{ height: 300px; }
  .divider-video .video{ width: 100%; height: 100%; object-fit: cover; }
  .divider-glow{
    position:absolute;
    inset: 0;
    background: radial-gradient(700px 260px at 30% 20%, rgba(47,127,123,.14), rgba(0,0,0,0));
    pointer-events:none;
  }
  
  /* SERVICES */
  .section-services-premium{
    background:
      radial-gradient(900px 520px at 20% 0%, rgba(168,214,215,.22), rgba(0,0,0,0)),
      linear-gradient(180deg, rgba(245,247,248,1), rgba(255,255,255,1));
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .services-shell{
    margin-top: 18px;
    border-radius: 26px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.72);
    box-shadow: 0 30px 90px rgba(0,0,0,.10);
    padding: 18px;
  }
  .services-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .svc-card{
    border-radius: 22px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
  }
  .svc-card:hover{
    transform: translateY(-3px);
    border-color: rgba(0,0,0,.12);
    background: rgba(255,255,255,.92);
  }
  .svc-media{ height: 180px; overflow:hidden; }
  .svc-media img{ width:100%; height:100%; object-fit: cover; transform: scale(1.02); transition: transform .28s ease; }
  .svc-card:hover .svc-media img{ transform: scale(1.06); }
  .svc-body{ padding: 14px 14px 16px; }
  .svc-body h3{ margin:0 0 8px; font-size: 16px; color: rgba(0,0,0,.86); }
  .svc-body p{ margin:0 0 12px; color: rgba(0,0,0,.62); line-height: 1.75; font-weight: 460; }
  
  .svc-list{ margin:0; padding:0; list-style:none; display:grid; gap: 8px; color: rgba(0,0,0,.78); font-weight: 650; }
  .svc-list li{ display:flex; align-items:center; gap: 10px; }
  .svc-list li::before{
    content:"✓";
    width: 18px; height: 18px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.12);
    background: rgba(0,0,0,.03);
    display:inline-grid;
    place-items:center;
    font-weight: 900;
    font-size: 12px;
    color: rgba(0,0,0,.70);
  }
  
  .services-box{
    margin-top: 14px;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.82);
    padding: 16px;
    display:flex;
    gap: 14px;
    align-items:center;
    justify-content:space-between;
  }
  .services-box-left p{ margin: 10px 0 0; color: rgba(0,0,0,.62); line-height: 1.8; font-weight: 460; }
  .sb-pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.85);
    color: rgba(0,0,0,.86);
    font-weight: 900;
  }
  .sb-ico{ width: 18px; height: 18px; display:inline-grid; place-items:center; }
  .sb-ico svg{ width: 18px; height: 18px; color: rgba(0,0,0,.80); }
  .services-box-actions{ display:flex; gap: 10px; flex-wrap: wrap; justify-content:flex-end; }
  .services-box-actions a.btn{ color: rgba(0,0,0,.86) !important; }
  
  /* PORTOFOLIO */
  .section-portfolio{
    background:
      radial-gradient(900px 500px at 20% 0%, rgba(168,214,215,.38), rgba(255,255,255,1)),
      linear-gradient(180deg, rgba(217,210,200,.30), rgba(255,255,255,1));
    border-top: 1px solid rgba(0,0,0,.05);
  }
  .pf-block{
    margin-top: 28px;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.72);
    box-shadow: var(--shadow2);
  }
  .pf-title{ display:flex; align-items:center; gap: 14px; margin-bottom: 14px; }
  .pf-title h3{ margin:0; font-size: 18px; letter-spacing: -0.02em; }
  .pf-line{ height: 1px; flex:1; background: rgba(0,0,0,.10); }
  .pf-grid{ display:grid; gap: 14px; }
  .pf-grid--3{ grid-template-columns: repeat(3, 1fr); }
  .pf-shot{
    border-radius: 18px;
    overflow:hidden;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.40);
    box-shadow: 0 18px 55px rgba(0,0,0,.10);
    transition: transform .20s ease, box-shadow .20s ease;
  }
  .pf-shot:hover{ transform: translateY(-2px); box-shadow: 0 26px 70px rgba(0,0,0,.14); }
  .pf-shot img{ width:100%; height: 220px; object-fit: cover; }
  
  .pf-reveal{ opacity: 0; transform: translateY(12px) scale(.985); transition: opacity .9s ease, transform .9s ease; }
  .pf-reveal.in{ opacity: 1; transform: translateY(0) scale(1); }
  
  /* PROCESS */
  .section-process{
    background: linear-gradient(180deg, rgba(168,214,215,.26), rgba(255,255,255,1));
    border-top: 1px solid rgba(0,0,0,.05);
  }
  .steps{ margin-top: 22px; display:grid; gap: 12px; }
  .step{
    display:flex;
    gap: 14px;
    align-items:flex-start;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 20px;
    padding: 16px;
    box-shadow: var(--shadow2);
  }
  .nr{
    width: 40px; height: 40px;
    border-radius: 14px;
    display:flex; align-items:center; justify-content:center;
    background: rgba(47,127,123,.10);
    border: 1px solid rgba(47,127,123,.18);
    font-weight: 1000;
    color: rgba(0,0,0,.78);
  }
  .step h3{ margin:0 0 8px; font-size: 16px; }
  .step p{ margin:0; color: var(--muted); line-height: 1.8; font-weight: 520; }
  
  /* WORK */
  .section-work{
    background: linear-gradient(180deg, rgba(217,210,200,.28), rgba(255,255,255,1));
    border-top: 1px solid rgba(0,0,0,.05);
  }
  .work-grid{
    margin-top: 22px;
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .work-card{
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow2);
    overflow:hidden;
  }
  .work-top{
    padding: 14px 14px 10px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
  }
  .work-top h3{ margin:0; font-size: 15px; letter-spacing: -0.01em; }
  .work-actions{ display:flex; gap: 8px; }
  .work-nav{
    width: 36px; height: 36px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
    cursor:pointer;
    font-size: 22px;
    line-height: 1;
  }
  .work-stage{
    border-top: 1px solid rgba(0,0,0,.06);
    border-bottom: 1px solid rgba(0,0,0,.06);
    background: rgba(0,0,0,.03);
  }
  .work-main{ width:100%; height: 260px; object-fit: cover; }
  .work-thumbs{
    display:flex;
    gap: 10px;
    padding: 12px;
    overflow:auto;
  }
  .work-thumbs img{
    width: 96px; height: 64px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(0,0,0,.10);
    cursor:pointer;
    opacity: .86;
    transition: opacity .18s ease, transform .18s ease;
  }
  .work-thumbs img:hover{ opacity: 1; transform: translateY(-1px); }
  .work-thumbs img.is-active{ outline: 2px solid rgba(47,127,123,.45); opacity: 1; }
  
  /* CONTACT */
  .section-contact{
    background: linear-gradient(180deg, rgba(255,255,255,1), rgba(217,210,200,.14));
    border-top: 1px solid rgba(0,0,0,.05);
  }
  .contact-wrap{
    display:grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 14px;
    margin-top: 18px;
  }
  .contact-left{ display:grid; gap: 14px; }
  .contact-card{
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.82);
    box-shadow: var(--shadow2);
    padding: 16px;
  }
  .contact-row{
    display:flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .contact-row:last-child{ border-bottom: none; }
  .contact-row .label{
    font-weight: 850;
    font-size: 12px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(0,0,0,.52);
  }
  .contact-row .value{
    font-weight: 520;
    color: rgba(0,0,0,.72);
  }
  .link{ text-decoration: underline; text-decoration-color: rgba(0,0,0,.20); }
  .link:hover{ text-decoration-color: rgba(0,0,0,.55); }
  
  .contact-note{
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow2);
    padding: 18px;
  }
  .cn-title{ font-weight: 1000; color: rgba(0,0,0,.86); }
  .cn-list{ margin: 12px 0 0; padding-left: 18px; color: rgba(0,0,0,.62); line-height: 1.9; font-weight: 460; }
  .cn-actions{ margin-top: 14px; display:flex; gap: 10px; flex-wrap: wrap; }
  .cn-actions .btn-ghost{ background: rgba(0,0,0,.03); border: 1px solid rgba(0,0,0,.10); color: rgba(0,0,0,.78); }
  .cn-actions .btn-ghost:hover{ background: rgba(0,0,0,.05); }
  
  .contact-side{ display:grid; gap: 14px; }
  
  /* FAQ */
  .faq-card{
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.86);
    box-shadow: var(--shadow2);
    padding: 16px;
  }
  .faq-pill{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.75);
    font-weight: 900;
    font-size: 12px;
  }
  .faq-title{ margin-top: 12px; font-weight: 1000; font-size: 20px; letter-spacing: -0.02em; }
  .faq-sub{ margin-top: 6px; color: rgba(0,0,0,.60); line-height: 1.7; font-size: 14px; }
  .faq{ margin-top: 12px; display:grid; gap: 10px; }
  .faq-q{
    width: 100%;
    text-align:left;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    padding: 12px 12px;
    font-weight: 900;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 10px;
  }
  .faq-q .chev{ opacity: .7; }
  .faq-a{
    display:none;
    padding: 10px 12px 2px;
    color: rgba(0,0,0,.62);
    line-height: 1.85;
    font-weight: 460;
  }
  .faq-q[aria-expanded="true"] + .faq-a{ display:block; }
  
  /* FOOTER */
  .footer{
    padding: 40px 0 16px;
    border-top: 1px solid rgba(0,0,0,.06);
    background: linear-gradient(180deg, rgba(217,210,200,.22), rgba(255,255,255,1));
  }
  .footer--small{ padding-top: 34px; }
  .footer-grid{
    display:grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 18px;
  }
  .footer a{
    display:block;
    color: rgba(0,0,0,.68);
    padding: 8px 0;
    font-weight: 800;
  }
  .footer a:hover{ color: rgba(47,127,123,1); }
  .footer-brand{ font-weight: 1000; letter-spacing: .02em; margin-bottom: 10px; }
  .footer-muted{
    color: rgba(0,0,0,.58);
    line-height: 1.6;
    font-weight: 520;
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
  .footer-muted a{ display: inline; padding: 0 !important; margin: 0 !important; }
  .footer-title{ font-weight: 1000; margin-bottom: 10px; font-size: 13px; }
  
  .footer-icons{
    display:flex;
    gap: 12px;
    margin-top: 8px;
  }
  .footer-icons a{
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.70);
    display:grid;
    place-items:center;
    padding: 0;
  }
  .footer-icons svg{ width: 22px; height: 22px; color: rgba(0,0,0,.75); }
  .footer-icons a:hover{
    background: rgba(168,214,215,.55);
    border-color: rgba(47,127,123,.22);
  }
  
  .footer-bottom{
    margin-top: 18px;
    padding: 14px 0 6px;
    color: rgba(0,0,0,.58);
    font-weight: 650;
    font-size: 12px;
  }
  .footer-bottom--split{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  /* Design by (pro, simplu) */
  .footer-bottom--split{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:16px;
  }
  
  .footer a.design-by{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    opacity:.9;
  }
  
  .footer a.design-by:hover{
    opacity:1;
  }
  
  .footer a.design-by img.ms-footer-logo{
    height: 150px;
    width:auto;
    display:block;
  }
  
  
  
  /* LIGHTBOX */
  .lightbox{
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
  }
  .lightbox.open{ display: block; }
  .lb-backdrop{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.78);
    backdrop-filter: blur(6px);
  }
  .lb-panel{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(1200px, calc(100% - 18px));
    height: min(90vh, 920px);
    border-radius: 22px;
    background: rgba(10,10,12,.62);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 30px 90px rgba(0,0,0,.45);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .lb-figure{
    margin: 0;
    width: 100%;
    height: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #lbImg{
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain !important;
    object-position: center !important;
    border-radius: 16px;
    background: rgba(0,0,0,.18);
  }
  .lb-close{
    position:absolute;
    top: 10px;
    right: 12px;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(0,0,0,.35);
    color:#fff;
    font-size: 24px;
    cursor:pointer;
    z-index: 5;
  }
  .lb-nav{
    position:absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.92);
    font-size: 56px;
    cursor: pointer;
    transition: background .18s ease;
    z-index: 5;
  }
  .lb-nav--left{ left: 0; }
  .lb-nav--right{ right: 0; }
  .lb-nav:hover{ background: rgba(255,255,255,.06); }
  
  /* REVEAL */
  .reveal{ opacity: 0; transform: translateY(14px); transition: opacity .70s ease, transform .70s ease; }
  .reveal.in{ opacity: 1; transform: translateY(0); }
  
  /* FLOAT BUTTONS */
  .float-stack{
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 120;
    display:flex;
    align-items:flex-end;
    gap: 10px;
  }
  .float-main{
    display:flex;
    flex-direction: column;
    gap: 10px;
  }
  .float-btn{
    display:inline-flex;
    align-items:center;
    gap: 10px;
    border-radius: 999px;
    padding: 12px 14px;
    border: 1px solid rgba(0,0,0,.10);
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
    font-weight: 900;
    cursor:pointer;
    transition: transform .18s ease, background .18s ease, border-color .18s ease;
  }
  .float-btn:hover{ transform: translateY(-2px); }
  .float-btn--top{ display:none; margin-bottom: 56px; }
  .float-btn--top.show{ display:inline-flex; }
  
  /* =========================
   LEGAL MODAL
   ========================= */
.legal-modal{
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.legal-modal.open{ display: block; }

.legal-backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(2px);
}

.legal-panel{
  position: relative;
  width: min(920px, calc(100% - 28px));
  max-height: min(84vh, 760px);
  margin: 8vh auto 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 26px 90px rgba(0,0,0,.22);
}

.legal-close{
  position:absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.85);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.legal-content{
  padding: 22px 22px 24px;
  overflow: auto;
  max-height: min(84vh, 760px);
}

.legal-kicker{
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: 11px;
  color: rgba(0,0,0,.55);
  margin-bottom: 10px;
}

.legal-box h2{
  margin: 6px 0 10px;
  font-size: 28px;
  letter-spacing: -0.02em;
}

.legal-box h3{
  margin: 16px 0 6px;
  font-size: 16px;
  letter-spacing: -0.01em;
}

.legal-box p{
  margin: 0 0 10px;
  color: rgba(0,0,0,.70);
  line-height: 1.85;
  font-weight: 460;
}

.legal-muted{
  color: rgba(0,0,0,.55);
  font-size: 14px;
}

  
  /* RESPONSIVE */
  @media (max-width: 980px){
    .services-grid{ grid-template-columns: 1fr 1fr; }
    .work-grid{ grid-template-columns: 1fr; }
    .contact-wrap{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr 1fr; }
    .about-panels{ grid-template-columns: 1fr; }
    .band-split{ grid-template-columns: 1fr; }
    .band-video .video-frame{ height: 240px; }
  
    .burger{ display:block; }
  
    .menu{
      position: fixed;
      top: 72px;
      right: 18px;
      left: 18px;
      display: none;
      flex-direction: column;
      gap: 10px;
      padding: 14px;
      border-radius: 18px;
      background: rgba(255,255,255,.85);
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: var(--shadow2);
    }
  
    .site-header.on-hero .menu{
      background: rgba(255,255,255,.18);
      border-color: rgba(255,255,255,.22);
      backdrop-filter: blur(12px);
    }
  
    .menu.open{ display:flex; }
    .menu a{ text-align:center; }
  }
  
  @media (max-width: 760px){
    .pf-grid--3{ grid-template-columns: repeat(2, 1fr); }
    .services-box{ flex-direction: column; align-items:flex-start; }
    .services-box-actions{ width:100%; justify-content:flex-start; }
  }
  
  @media (max-width: 560px){
    .pf-grid--3{ grid-template-columns: 1fr; }
    .footer-grid{ grid-template-columns: 1fr; }
    .brand{ min-width: auto; }
    .lb-nav{ width: 54px; font-size: 46px; }
  }
  @media (max-width: 560px){
    .footer-bottom--split{
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }
  
    .footer a.design-by img.ms-footer-logo{
      height: 130px;
    }
  }
  /* =========================
   COOKIE BANNER (compact)
   ========================= */

.cookie-banner[hidden] { display: none !important; }

.cookie-banner{
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  z-index: 9999;
  max-width: 360px;
  width: calc(100% - 32px);
}

.cookie-banner__content{
  background: rgba(17,17,17,.96);
  color: #fff;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 12px 35px rgba(0,0,0,.35);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  backdrop-filter: blur(10px);
}

.cookie-banner__title{
  margin: 0 0 6px 0;
  font-weight: 700;
  font-size: 14px;
}

.cookie-banner__text{
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.35;
  opacity: .95;
}

.cookie-banner__link{
  color: #9ad;
  text-decoration: underline;
}

.cookie-banner__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.cookie-btn{
  border: 0;
  border-radius: 10px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

.cookie-btn--primary{
  background: #fff;
  color: #111;
}

.cookie-btn--secondary{
  background: rgba(255,255,255,.14);
  color: #fff;
}

.cookie-btn--link{
  background: transparent;
  color: #9ad;
  padding: 8px 6px;
  text-decoration: underline;
}

.cookie-settings{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.cookie-toggle{
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0;
  font-size: 13px;
}

.cookie-banner__actions--panel{
  margin-top: 6px;
}

/* Mobile: îl mută pe mijloc jos ca să nu acopere tot */
@media (max-width: 520px){
  .cookie-banner{
    left: 16px;
    right: 16px;
    max-width: 520px;
  }
}
