@charset "utf-8";
/* CSS Document */

 :root{
      --wine:#6d222c;
      --wine-2:#900000;
      --red:#a33843;
      --red-soft:#b94a55;
      --coral:#d96067;
      --gold:#bf7a2c;
      --gold-light:#f2d59a;
      --ivory:#fffaf7;
      --paper:#fffdfb;
      --blush:#f8e5e2;
      --blush-2:#f4ddda;
      --ink:#321116;
      --muted:#7b6568;
      --line:rgba(109,34,44,.12);
      --white:#fff;
      --shadow:0 24px 60px rgba(76,24,31,.08);
      --container:min(1180px, calc(100% - 40px));
      --serif:Georgia, "Times New Roman", serif;
      --sans:Inter, Arial, Helvetica, sans-serif;
      --ease:cubic-bezier(.22,.8,.24,1);
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--ivory);
      color:var(--ink);
      font-family:var(--sans);
      -webkit-font-smoothing:antialiased;
      text-rendering:optimizeLegibility;
    }
    img,video,iframe{max-width:100%;display:block}
    a{color:inherit;text-decoration:none}
    .container{width:var(--container);margin-inline:auto}
    .section{padding:92px 0}
    .section-title{
      margin:0 0 18px;
      font-family:var(--serif);
      font-size:clamp(38px,5vw,66px);
      line-height:.98;
      letter-spacing:-.04em;
    }
    .section-title .accent{
      color:#bf7a2c;
      text-shadow:0 1px 0 rgba(255,255,255,.72),0 8px 18px rgba(191,122,44,.14);
      -webkit-text-stroke:.3px rgba(122,70,18,.14);
    }
    .section-lead{
      max-width:760px;
      margin:0;
      color:var(--muted);
      font-size:17px;
      line-height:1.6;
    }
    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:16px;
      color:var(--wine-2);
      font-size:10px;
      font-weight:900;
      letter-spacing:.15em;
      text-transform:uppercase;
    }
    .eyebrow:before{
      content:"";
      width:30px;
      height:1px;
      background:currentColor;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:12px;
      min-height:58px;
      padding:0 12px 0 24px;
      border-radius:999px;
      font-size:13px;
      font-weight:900;
      letter-spacing:.01em;
      transition:transform .24s var(--ease), box-shadow .24s ease, background .24s ease;
      white-space:nowrap;
    }
    .btn:hover{
      transform:translateY(-2px);
    }
    .btn-primary{
      background:linear-gradient(135deg,#900000,#6d222c);
      color:#fff;
      box-shadow:0 14px 34px rgba(109,34,44,.22);
    }
    .btn-primary:hover{box-shadow:0 20px 44px rgba(109,34,44,.28)}
    .btn-secondary{
      background:#fff;
      color:var(--wine-2);
      border:1px solid rgba(109,34,44,.16);
      box-shadow:0 12px 28px rgba(82,28,35,.06);
    }
    .btn .arrow-circle{
      width:40px;
      height:40px;
      display:grid;
      place-items:center;
      border-radius:50%;
      font-size:14px;
      flex:0 0 40px;
    }
    .btn-primary .arrow-circle{background:rgba(255,255,255,.12); color:#fff}
    .btn-secondary .arrow-circle{background:var(--blush); color:var(--wine-2)}

    /* Header */
    .topbar{
      position:sticky;
      top:0;
      z-index:40;
      background:rgba(45,13,19,.82);
      backdrop-filter:blur(14px);
      border-bottom:1px solid rgba(255,255,255,.06);
    }
    .topbar-inner{
      min-height:74px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
    }
    .brand-logo{
      width:120px;
      height:auto;
      display:block;
    }
    .topbar-nav{
      display:flex;
      gap:18px;
      color:rgba(255,255,255,.72);
      font-size:12px;
      font-weight:800;
    }
    .topbar-nav a:hover{color:#fff}

    /* Hero */
    .hero{
      position:relative;
      overflow:hidden;
      padding:46px 0 82px;
      color:#fff;
      background:
        radial-gradient(circle at 88% 10%, rgba(242,213,154,.20), transparent 24%),
        radial-gradient(circle at 12% 92%, rgba(229,121,121,.16), transparent 26%),
        linear-gradient(135deg, #a33843, #6d222c 65%, #41151c);
    }
    .hero:before{
      content:"GALAȚI";
      position:absolute;
      right:-.02em;
      top:-.06em;
      font-family:var(--serif);
      font-size:clamp(110px, 18vw, 250px);
      line-height:1;
      letter-spacing:-.08em;
      color:rgba(255,255,255,.04);
      pointer-events:none;
    }
    .breadcrumb{
      position:relative;
      z-index:2;
      display:flex;
      flex-wrap:wrap;
      gap:8px;
      align-items:center;
      margin-bottom:32px;
      color:rgba(255,255,255,.66);
      font-size:11px;
      font-weight:700;
    }
    .breadcrumb a:hover{color:#fff}
    .breadcrumb .sep{opacity:.42}
    .hero-grid{
      position:relative;
      z-index:2;
      display:grid;
      grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr);
      gap:54px;
      align-items:end;
    }
    .hero h1{
      margin:0;
      max-width:860px;
      font-family:var(--serif);
      font-size:clamp(48px,6.6vw,88px);
      line-height:.95;
      letter-spacing:-.045em;
      text-wrap:balance;
    }
    .hero-copy p{
      max-width:760px;
      margin:22px 0 0;
      color:rgba(255,255,255,.80);
      font-size:18px;
      line-height:1.55;
    }
    .hero-side{
      padding:22px;
      border:1px solid rgba(255,255,255,.14);
      border-radius:28px;
      background:rgba(255,255,255,.08);
      backdrop-filter:blur(12px);
      box-shadow:0 20px 50px rgba(39,9,14,.10);
    }
    .hero-side strong{
      display:block;
      margin-bottom:10px;
      font-size:12px;
      color:#fff;
      letter-spacing:.12em;
      text-transform:uppercase;
    }
    .hero-side p{
      margin:0;
      color:rgba(255,255,255,.72);
      font-size:14px;
      line-height:1.6;
    }
    .hero-pills{
      display:grid;
      gap:10px;
      margin-top:18px;
    }
    .hero-pills span{
      display:inline-flex;
      align-items:center;
      gap:8px;
      min-height:42px;
      padding:0 14px;
      border-radius:999px;
      background:rgba(255,255,255,.10);
      color:#fff;
      font-size:12px;
      font-weight:800;
    }

    /* CTA twin */
    .cta-band{
      padding:30px;
      border:1px solid var(--line);
      border-radius:34px;
      background:
        radial-gradient(circle at 90% 0%, rgba(242,213,154,.16), transparent 22%),
        linear-gradient(180deg,#fffaf7,#fff);
      box-shadow:var(--shadow);
    }
    .cta-band-grid{
      display:grid;
      grid-template-columns:minmax(0,1fr) auto;
      gap:28px;
      align-items:center;
    }
    .cta-band h2{
      margin:0 0 10px;
      font-family:var(--serif);
      font-size:clamp(34px,4.4vw,54px);
      line-height:1;
      letter-spacing:-.04em;
    }
    .cta-band p{
      margin:0;
      max-width:700px;
      color:var(--muted);
      font-size:16px;
      line-height:1.6;
    }
    .cta-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      justify-content:flex-end;
    }

    /* Intro + cards */
    .intro-block{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:70px;
      align-items:start;
    }
    .intro-copy{
      color:#5f4b4e;
      font-size:16px;
      line-height:1.8;
    }
    .intro-copy p{margin:0 0 16px}
    .feature-head{margin-top:4px}
    .features-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:14px;
      margin-top:24px;
    }
    .feature-card{
      min-height:210px;
      padding:22px;
      border-radius:26px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 18px 44px rgba(81,29,36,.05);
    }
    .feature-icon{
      width:64px;
      height:64px;
      display:grid;
      place-items:center;
      margin-bottom:18px;
      border-radius:50%;
      border:1.5px solid rgba(168,42,56,.38);
      color:#a82a38;
    }
    .feature-icon svg{
      width:32px;height:32px;
      fill:none; stroke:currentColor; stroke-width:1.8;
      stroke-linecap:round; stroke-linejoin:round;
    }
    .feature-card h3{
      margin:0 0 10px;
      font-family:var(--serif);
      font-size:24px;
      line-height:1.05;
      color:var(--wine);
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    /* Location */
    .location{
      background:
        radial-gradient(circle at 8% 4%, rgba(242,213,154,.22), transparent 24%),
        linear-gradient(180deg,#fffaf7,#fcedea);
    }
    .location-grid{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
      gap:26px;
      align-items:stretch;
    }
    .location-card,.location-photo{
      min-height:100%;
      border-radius:30px;
      overflow:hidden;
      background:#fff;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
    }
    .location-card{padding:28px}
    .location-list{
      display:grid;
      gap:14px;
      margin-top:26px;
    }
    .location-item{
      padding:16px 18px;
      border-radius:18px;
      background:var(--paper);
      border:1px solid rgba(109,34,44,.08);
    }
    .location-item strong{
      display:block;
      margin-bottom:6px;
      font-size:12px;
      color:var(--wine-2);
      text-transform:uppercase;
      letter-spacing:.12em;
    }
    .location-item p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }
    .location-photo{
      position:relative;
      min-height:520px;
      background:
        linear-gradient(180deg, rgba(31,7,12,.08), rgba(31,7,12,.28)),
        url('/images/studio/galati/studio-videochat-galati.webp') center/cover no-repeat;
    }
    .location-badge{
      position:absolute;
      left:22px;
      bottom:22px;
      max-width:360px;
      padding:16px 18px;
      border-radius:20px;
      background:rgba(255,255,255,.88);
      color:var(--ink);
      box-shadow:0 18px 40px rgba(50,17,22,.10);
    }
    .location-badge strong{
      display:block;
      margin-bottom:5px;
      font-size:12px;
      text-transform:uppercase;
      letter-spacing:.12em;
      color:var(--wine-2);
    }
    .location-badge p{
      margin:0;
      font-size:14px;
      color:#5f4b4e;
      line-height:1.5;
    }

    /* Gallery */
    .gallery-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:28px;
    }
    .gallery-item{
      position:relative;
      overflow:hidden;
      border-radius:26px;
      min-height:240px;
      box-shadow:var(--shadow);
    }
    .gallery-item:nth-child(1){grid-column:span 2; grid-row:span 2; min-height:494px}
    .gallery-item img{
      width:100%;height:100%;object-fit:cover;
      transition:transform .55s var(--ease);
    }
    .gallery-item:hover img{transform:scale(1.04)}
    .gallery-item:after{
      content:"";
      position:absolute; inset:0;
      background:linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.16));
      pointer-events:none;
    }

    /* Video section */
    .video-showcase{
      background:
        radial-gradient(circle at 50% 0%, rgba(242,213,154,.25), transparent 24%),
        radial-gradient(circle at 12% 84%, rgba(229,121,121,.24), transparent 28%),
        linear-gradient(135deg,#a33843,#6d222c 65%,#41151c);
      color:#fff;
    }
    .video-grid{
      display:grid;
      grid-template-columns:minmax(280px,420px) minmax(0,1fr);
      gap:40px;
      align-items:start;
    }
    .video-phone{
      width:min(100%, 380px);
      margin-inline:auto;
      padding:10px;
      border-radius:36px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.12);
      box-shadow:0 26px 60px rgba(39,9,14,.18);
    }
    .video-phone video{
      width:100%;
      aspect-ratio:9/16;
      object-fit:cover;
      border-radius:28px;
      background:#24070d;
    }
    .video-copy h2{
      margin:0 0 16px;
      font-family:var(--serif);
      font-size:clamp(38px,4.8vw,62px);
      line-height:.98;
      letter-spacing:-.04em;
    }
    .video-copy p{
      margin:0 0 18px;
      color:rgba(255,255,255,.78);
      font-size:16px;
      line-height:1.65;
      max-width:680px;
    }
    .video-list{
      display:grid;
      gap:12px;
      margin-top:22px;
    }
    .video-list li{
      list-style:none;
      padding:16px 18px;
      border-radius:18px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.08);
      color:rgba(255,255,255,.84);
      font-size:14px;
      line-height:1.55;
    }

    /* Offer */
    .offer-grid{
      display:grid;
      grid-template-columns:repeat(4,1fr);
      gap:14px;
      margin-top:28px;
    }
    .offer-card{
      min-height:180px;
      padding:22px;
      border-radius:24px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:0 16px 42px rgba(81,29,36,.05);
    }
    .offer-card h3{
      margin:0 0 10px;
      font-family:var(--serif);
      font-size:24px;
      line-height:1.05;
      color:var(--wine);
    }
    .offer-card p{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    /* Ad banner */
    .ad-banner{
      overflow:hidden;
    }
    .ad-inner{
      position:relative;
      padding:34px 34px 30px;
      border-radius:34px;
      color:#fff;
      background:
        radial-gradient(circle at 88% 12%, rgba(242,213,154,.22), transparent 22%),
        radial-gradient(circle at 10% 96%, rgba(229,121,121,.18), transparent 26%),
        linear-gradient(135deg,#900000,#6d222c 68%,#42151c);
      box-shadow:0 24px 60px rgba(76,24,31,.16);
    }
    .ad-inner:before{
      content:"NIGHTPROWL";
      position:absolute;
      right:-.03em;
      bottom:-.14em;
      font-family:var(--serif);
      font-size:clamp(72px,11vw,180px);
      line-height:1;
      color:rgba(255,255,255,.05);
      letter-spacing:-.06em;
      pointer-events:none;
    }
    .ad-inner h2{
      position:relative;
      z-index:2;
      margin:0 0 12px;
      font-family:var(--serif);
      font-size:clamp(34px,4.4vw,58px);
      line-height:1;
      letter-spacing:-.04em;
    }
    .ad-inner p{
      position:relative;
      z-index:2;
      max-width:700px;
      margin:0 0 22px;
      color:rgba(255,255,255,.80);
      font-size:16px;
      line-height:1.65;
    }

    /* Map/contact */
    .contact-wrap{
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
      gap:20px;
      align-items:stretch;
    }
    .map-embed{
      min-height:480px;
      overflow:hidden;
      border-radius:30px;
      border:1px solid var(--line);
      box-shadow:var(--shadow);
      background:#fff;
    }
    .map-embed iframe{width:100%;height:100%;border:0}
    .contact-card{
      padding:28px;
      border-radius:30px;
      border:1px solid var(--line);
      background:#fff;
      box-shadow:var(--shadow);
    }
    .contact-list{
      display:grid;
      gap:14px;
      margin-top:24px;
    }
    .contact-item{
      padding:16px 18px;
      border-radius:18px;
      background:var(--paper);
      border:1px solid rgba(109,34,44,.08);
    }
    .contact-item strong{
      display:block;
      margin-bottom:6px;
      font-size:12px;
      color:var(--wine-2);
      text-transform:uppercase;
      letter-spacing:.12em;
    }
    .contact-item p,.contact-item a{
      margin:0;
      color:var(--muted);
      font-size:14px;
      line-height:1.55;
    }

    /* Testimonials */
    .testimonials{
      background:
        radial-gradient(circle at 50% 0%, rgba(242,213,154,.25), transparent 24%),
        radial-gradient(circle at 12% 84%, rgba(229,121,121,.24), transparent 28%),
        linear-gradient(135deg,#a33843,#6d222c 65%,#41151c);
      color:#fff;

    }
    .testimonials-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-top:28px;
    }
    .testimonial{
      padding:24px;
      border-radius:26px;
      background:rgba(255,255,255,.08);
      border:1px solid rgba(255,255,255,.10);
      box-shadow:0 18px 42px rgba(39,9,14,.10);
    }
    .stars{
      margin-bottom:14px;
      color:#f4d48f;
      letter-spacing:.18em;
      font-size:16px;
      line-height:1;
    }
    .testimonial p{
      margin:0 0 18px;
      color:rgba(255,255,255,.84);
      font-size:15px;
      line-height:1.65;
    }
    .testimonial strong{
      display:block;
      font-size:14px;
      color:#fff;
    }
    .testimonial span{
      display:block;
      margin-top:5px;
      font-size:11px;
      color:rgba(255,255,255,.60);
      letter-spacing:.08em;
      text-transform:uppercase;
    }

    /* FAQ */
    .faq-list{
      margin-top:28px;
      border-top:1px solid var(--line);
    }
    .faq-item{
      border-bottom:1px solid var(--line);
      background:transparent;
    }
    .faq-q{
      width:100%;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:18px;
      padding:22px 0;
      border:0;
      background:none;
      text-align:left;
      cursor:pointer;
      font-family:var(--sans);
      font-size:18px;
      font-weight:800;
      color:var(--ink);
    }
    .faq-plus{
      flex:0 0 auto;
      width:34px;height:34px;
      display:grid;place-items:center;
      border-radius:50%;
      background:var(--blush);
      color:var(--wine-2);
      font-size:18px;
      transition:transform .22s var(--ease), background .22s ease;
    }
    .faq-a{
      max-height:0;
      overflow:hidden;
      transition:max-height .28s var(--ease);
    }
    .faq-a p{
      margin:0;
      padding:0 0 22px;
      max-width:880px;
      color:var(--muted);
      font-size:16px;
      line-height:1.7;
    }
    .faq-item.open .faq-plus{transform:rotate(45deg); background:#f2ddd8}
    .faq-item.open .faq-a{max-height:260px}

    /* Footer */
    .footer{
      background:#2d0d13;
      color:rgba(255,255,255,.52);
      padding:24px 0;
    }
    .footer-inner{
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:20px;
      font-size:10px;
    }
    .footer-links{
      display:flex;
      gap:20px;
    }

    /* Responsive */
    @media (max-width: 980px){
      .hero-grid,
      .intro-block,
      .location-grid,
      .video-grid,
      .contact-wrap{
        grid-template-columns:1fr;
        gap:28px;
      }
      .cta-band-grid{
        grid-template-columns:1fr;
      }
      .cta-actions{
        justify-content:flex-start;
      }
      .hero-side{
        max-width:720px;
      }
      .offer-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .testimonials-grid{
        grid-template-columns:1fr;
      }
      .gallery-grid{
        grid-template-columns:repeat(2,1fr);
      }
      .gallery-item:nth-child(1){
        grid-column:span 2;
        grid-row:auto;
        min-height:360px;
      }
    }

    @media (max-width: 720px){
      :root{--container:min(100% - 28px,1180px)}
      .section{padding:68px 0}
      .topbar-inner{
        min-height:68px;
      }
      .brand-logo{width:106px}
      .topbar-nav{display:none}

      .hero{
        padding:30px 0 54px;
      }
      .breadcrumb{
        gap:6px;
        margin-bottom:24px;
        font-size:10px;
      }
      .hero h1{
        font-size:clamp(42px,12vw,60px);
        line-height:1.01;
      }
      .hero-copy p{
        margin-top:18px;
        font-size:17px;
        line-height:1.5;
      }
      .hero-side{
        padding:18px;
        border-radius:22px;
      }
      .hero-pills span{min-height:40px}

      .cta-band{
        padding:24px 18px;
        border-radius:26px;
      }
      .cta-band h2{
        font-size:clamp(30px,9vw,44px);
      }
      .cta-band p{
        font-size:16px;
        line-height:1.55;
      }
      .cta-actions{
        width:100%;
        flex-direction:column;
      }
      .cta-actions .btn{
        width:100%;
      }

      .features-grid{
        grid-template-columns:1fr;
      }
      .feature-card{
        min-height:0;
        padding:20px;
        border-radius:22px;
      }
      .feature-icon{
        width:74px;height:74px;
      }
      .feature-icon svg{
        width:36px;height:36px;
      }

      .location-card,
      .location-photo,
      .map-embed,
      .contact-card{
        border-radius:24px;
      }
      .location-photo{
        min-height:360px;
      }
      .location-badge{
        left:16px;
        right:16px;
        bottom:16px;
        max-width:none;
      }

      .gallery-grid{
        display:flex;
        gap:12px;
        overflow-x:auto;
        padding-bottom:4px;
        scroll-snap-type:x mandatory;
        -webkit-overflow-scrolling:touch;
      }
      .gallery-grid::-webkit-scrollbar{display:none}
      .gallery-item,
      .gallery-item:nth-child(1){
        flex:0 0 82vw;
        min-width:82vw;
        min-height:320px;
        grid-column:auto;
        scroll-snap-align:start;
      }

      .video-phone{
        width:min(100%, 330px);
      }

      .offer-grid{
        grid-template-columns:1fr;
      }
      .offer-card{
        min-height:0;
      }

      .contact-wrap{
        gap:14px;
      }
      .map-embed{
        min-height:340px;
      }

      .faq-q{
        padding:18px 0;
        font-size:17px;
        line-height:1.35;
      }
      .faq-a p{
        font-size:15px;
        line-height:1.65;
      }

      .footer-inner{
        flex-direction:column;
        align-items:flex-start;
        gap:10px;
      }
      .footer-links{
        gap:14px;
        flex-wrap:wrap;
      }
    }