

:root{
  
  --bg:        #F5EFE3;          
  --bg-soft:   #FBF6EB;          
  --paper:     #FFFEF9;          
  --ink:       #0F2640;          
  --ink-soft:  #294461;          
  --muted:     #6A7A8C;          
  --line:      #DBCFB7;          
  --line-soft: #E6DCC4;
  --accent:    #C04A1F;          
  --accent-2:  #E07A4A;          
  --gold:      #C7A05C;

  --f-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --f-sans:    'Manrope', system-ui, sans-serif;

  --rad: 4px;
  --container-max: 1240px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body{ margin: 0; overflow-x: hidden; width: 100%; }

body{
  font-family: var(--f-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection{ background: var(--accent); color: var(--paper); }
img, svg{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }

.container{ max-width: var(--container-max); }

.np-l{ display: none; }
html[data-lang="ro"] .np-l--ro,
html[data-lang="en"] .np-l--en,
html[data-lang="es"] .np-l--es{ display: inline; }

.np-h1, .np-h2{
  font-family: var(--f-display);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--ink);
  margin: 0;
}
.np-h1{
  font-size: clamp(38px, 5.4vw, 72px);
  margin-bottom: 24px;
}
.np-h1 em{
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.np-h2{
  font-size: clamp(32px, 4vw, 54px);
  margin-bottom: 18px;
}
.np-h2 em{
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.np-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.np-eyebrow::before{
  content: "";
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--accent);
}

.np-section__num{
  display: inline-block;
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--accent);
  padding: 4px 10px;
  border: 1px solid var(--accent);
  border-radius: 999px;
  margin-bottom: 18px;
}
.np-section__lead{
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
  margin: 14px 0 0;
}
.np-section__head{
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.np-top{
  background: var(--ink);
  color: var(--bg-soft);
  padding: 10px 0;
  font-size: 13px;
  font-weight: 500;
}
.np-top a{
  color: var(--bg-soft);
  opacity: .9;
  transition: opacity .2s ease;
  display: inline-flex; align-items: center; gap: 8px;
}
.np-top a:hover{ opacity: 1; color: var(--accent-2); }
.np-top__loc{
  display: inline-flex; align-items: center; gap: 8px;
  opacity: .75;
  color: var(--bg-soft);
}
.np-top i{ font-size: 12px; color: var(--accent-2); }

.np-lang{
  display: inline-flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  overflow: hidden;
}
.np-lang__btn{
  appearance: none; border: 0;
  background: transparent;
  color: var(--bg-soft);
  font: inherit;
  font-size: 11.5px;
  letter-spacing: .14em;
  font-weight: 700;
  padding: 5px 12px;
  cursor: pointer;
  opacity: .65;
  transition: .2s ease;
}
.np-lang__btn:hover{ opacity: 1; }
.np-lang__btn.is-active{
  background: var(--paper);
  color: var(--ink);
  opacity: 1;
}

.np-nav{
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  position: sticky; top: 0; z-index: 40;
  transition: padding .25s ease, box-shadow .25s ease, background .25s ease;
}
.np-nav.is-shrunk{
  padding: 12px 0;
  background: rgba(245,239,227,.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line);
}
.np-nav .navbar{ flex-wrap: nowrap; align-items: center; gap: 24px; }

.np-brand{
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--ink);
  flex: 0 0 auto;
}
.np-logo{
  width: 44px; height: 44px;
  color: var(--ink);
  flex: 0 0 auto;
}
.np-word{ display: flex; flex-direction: column; line-height: 1.1; }
.np-word__name{
  font-family: var(--f-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
}
.np-word__sub{
  font-family: var(--f-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-top: 2px;
}

.np-menu{
  list-style: none; margin: 0 0 0 auto; padding: 0;
  display: flex; align-items: center; gap: clamp(20px, 2.4vw, 36px);
}
.np-menu a{
  position: relative;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  padding: 6px 0;
  transition: color .2s ease;
}
.np-menu a::after{
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0; height: 1.5px;
  background: var(--accent);
  transition: right .3s ease;
}
.np-menu a:hover{ color: var(--accent); }
.np-menu a:hover::after{ right: 0; }

.np-cta{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-size: 14px; font-weight: 600;
  letter-spacing: .01em;
  background: var(--ink);
  color: var(--paper);
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: .25s ease;
  white-space: nowrap;
}
.np-cta i{ transition: transform .25s ease; font-size: 13px; }
.np-cta:hover{ background: var(--accent); border-color: var(--accent); color: var(--paper); }
.np-cta:hover i{ transform: translateX(3px); }

.np-burger{
  appearance: none; border: 0; background: transparent;
  width: 36px; height: 36px;
  display: inline-flex; flex-direction: column; justify-content: center; gap: 6px;
  cursor: pointer;
  margin-left: auto;
  padding: 0;
}
.np-burger span{
  display: block; width: 24px; height: 1.5px; background: var(--ink);
  transition: .3s ease;
}
.np-burger[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.np-burger[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.np-burger[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

.np-mobile{
  position: fixed; inset: 0;
  z-index: 35;
  background: var(--bg);
  padding: 76px 22px 22px;
  transform: translateY(-101%);
  transition: transform .45s cubic-bezier(.7,0,.1,1);
  overflow-y: auto;
}
.np-mobile.is-open{ transform: translateY(0); }
.np-mobile ul{
  list-style: none; padding: 0; margin: 0;
}
.np-mobile li{ border-bottom: 1px solid var(--line); }
.np-mobile li a{
  display: block;
  padding: 11px 0;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
}
.np-mobile li a:hover{ color: var(--accent); }
.np-cta--full{ width: 100%; justify-content: center; padding: 16px 24px; }

.np-hero{
  padding: clamp(40px, 5.5vw, 72px) 0 clamp(36px, 4.5vw, 60px);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.np-hero::before{
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,74,31,.08), transparent 70%);
  pointer-events: none;
}

.np-lead{
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 0 32px;
}

.np-hero__cta{
  display: flex; flex-wrap: wrap; gap: 12px;
}
.np-btn{
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-sans);
  font-size: 14.5px; font-weight: 600;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: .25s ease;
  cursor: pointer;
}
.np-btn i{ transition: transform .25s ease; font-size: 13px; }
.np-btn--solid{
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.np-btn--solid:hover{
  background: var(--accent);
  border-color: var(--accent);
}
.np-btn--solid:hover i{ transform: translateX(3px); }
.np-btn--ghost{
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.np-btn--ghost:hover{
  background: var(--ink);
  color: var(--paper);
}

.np-hero__panel{
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 18px;
  box-shadow: 0 30px 60px -30px rgba(15,38,64,.18);
}
.np-hero__photo{
  border-radius: 2px;
  overflow: hidden;
  background: var(--ink);
}
.np-hero__photo svg{ width: 100%; height: auto; display: block; }
.np-hero__caption{
  display: flex; justify-content: space-between; align-items: baseline;
  margin-top: 14px; padding: 4px 4px 0;
  font-size: 12px;
}
.np-hero__caption strong{
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .04em;
  font-family: var(--f-sans);
}
.np-hero__caption span{
  color: var(--muted);
  font-style: italic;
  font-family: var(--f-display);
  font-size: 14px;
}

.np-pillars{
  margin-top: clamp(32px, 4vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
}
.np-pillar{
  position: relative;
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: clamp(22px, 2vw, 30px);
  text-decoration: none;
  color: var(--ink);
  transition: .3s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
}
.np-pillar::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 3px; width: 0;
  background: var(--accent);
  transition: width .4s ease;
}
.np-pillar:hover{
  transform: translateY(-4px);
  border-color: var(--line);
  box-shadow: 0 22px 44px -22px rgba(15,38,64,.25);
  color: var(--ink);
}
.np-pillar:hover::before{ width: 100%; }
.np-pillar__top{
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 18px;
}
.np-pillar__no{
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--accent);
}
.np-pillar__top i{
  font-size: 26px;
  color: var(--accent);
  transition: transform .35s ease;
}
.np-pillar:hover .np-pillar__top i{
  transform: rotate(-6deg) scale(1.05);
}
.np-pillar h3{
  font-family: var(--f-display);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0 0 10px;
}
.np-pillar p{
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.np-pillar__link{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  margin-top: auto;
}
.np-pillar__link i{
  font-size: 11px;
  transition: transform .25s ease;
}
.np-pillar:hover .np-pillar__link i{ transform: translateX(4px); }

.np-section{
  padding: clamp(48px, 6.5vw, 88px) 0;
}
.np-about{ background: var(--bg); }
.np-services{ background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.np-vessels{ background: var(--bg); }
.np-experience{ background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.np-contact{ background: var(--bg); }

.np-prose{
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 22px;
  max-width: 64ch;
}
.np-prose--lead{
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink);
}
.np-prose strong{
  font-weight: 600;
  color: var(--ink);
  border-bottom: 2px solid var(--accent);
}

.np-service{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 32px 28px;
  height: 100%;
  transition: .3s ease;
  position: relative;
}
.np-service::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 0; height: 3px;
  background: var(--accent);
  transition: width .35s ease;
}
.np-service:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(15,38,64,.18);
  border-color: var(--line);
}
.np-service:hover::before{ width: 100%; }
.np-service > i{
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 22px;
  display: inline-block;
}
.np-service h3{
  font-family: var(--f-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 12px;
  letter-spacing: -.005em;
}
.np-service p{
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.np-service--accent{
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.np-service--accent::before{ background: var(--accent-2); }
.np-service--accent h3{ color: var(--paper); }
.np-service--accent p{ color: rgba(255,254,249,.78); }
.np-service--accent > i{ color: var(--accent-2); }

.np-vessel{
  display: flex; align-items: center; gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  transition: .25s ease;
  height: 100%;
}
.np-vessel:hover{
  border-color: var(--accent);
  background: var(--bg-soft);
}
.np-vessel i{
  color: var(--accent);
  font-size: 18px;
  flex: 0 0 auto;
}

.np-caps{
  margin-top: clamp(40px, 4.5vw, 60px);
  padding-top: clamp(40px, 4.5vw, 60px);
  border-top: 1px solid var(--line);
}
.np-caps__title{
  font-family: var(--f-display);
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -.005em;
  color: var(--ink);
  margin: 0 0 32px;
  text-align: center;
}
.np-cap{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 28px 24px;
  height: 100%;
  position: relative;
}
.np-cap__no{
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--paper);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 16px;
  letter-spacing: 0;
}
.np-cap h4{
  font-family: var(--f-display);
  font-size: 21px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
  letter-spacing: -.005em;
}
.np-cap p{
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.np-exp{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: .3s ease;
}
.np-exp:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px -20px rgba(15,38,64,.18);
}
.np-exp header{
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.np-exp__flag{
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .08em;
  flex: 0 0 auto;
}
.np-exp h3{
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -.01em;
}
.np-exp__city{
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-top: 4px;
}
.np-exp p{
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 18px;
}
.np-exp ul{
  list-style: none; padding: 0; margin: 0;
}
.np-exp ul li{
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-top: 1px dashed var(--line);
}
.np-exp ul li::before{
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex: 0 0 auto;
}

.np-gallery{ background: var(--bg); padding-bottom: clamp(28px, 4vw, 56px); }
.np-contact{ padding-top: clamp(28px, 4vw, 56px); }

.np-carousel{
  position: relative;
}

.np-carousel .carousel{
  background: var(--ink);
  border-radius: var(--rad);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 30px 60px -30px rgba(15,38,64,.28);
}

.np-carousel .carousel-inner{
  height: clamp(360px, 62vh, 640px);
  background:
    radial-gradient(ellipse at center, #14304E 0%, var(--ink) 75%);
}
.np-carousel .carousel-item{
  height: 100%;
  transition: transform .8s cubic-bezier(.4,0,.2,1), opacity .8s ease;
}

.np-slide{
  position: relative;
  width: 100%;
  height: 100%;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
}
.np-slide img{
  max-width: 100%;
  max-height: 100%;
  width: auto; height: auto;
  object-fit: contain;
  display: block;
  filter: saturate(.96) contrast(1.04);
}

.np-slide__cap{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px clamp(20px, 3vw, 44px);
  display: flex; flex-direction: column; align-items: flex-start;
  gap: 6px;
  color: var(--paper);
  background: linear-gradient(transparent, rgba(4,12,22,.75) 70%, rgba(4,12,22,.9));
  pointer-events: none;
}
.np-slide__cat{
  font-family: var(--f-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 5px 10px;
  background: rgba(192,74,31,.16);
  border: 1px solid rgba(224,122,74,.4);
  border-radius: 999px;
}
.np-slide__t{
  font-family: var(--f-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 600;
  letter-spacing: -.005em;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.np-slide__zoom{
  position: absolute;
  top: 18px; right: 18px;
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,254,249,.92);
  color: var(--ink);
  border-radius: 50%;
  font-size: 14px;
  opacity: 0;
  transform: scale(.85);
  transition: .25s ease;
  pointer-events: none;
}
.np-slide:hover .np-slide__zoom{
  opacity: 1;
  transform: scale(1);
}

.np-carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,254,249,.92);
  color: var(--ink);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 4;
  transition: .25s ease;
  opacity: 1;
  filter: none;
}
.np-carousel__btn--prev{ left: 18px; }
.np-carousel__btn--next{ right: 18px; }
.np-carousel__btn:hover{
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.06);
}
.np-carousel__btn i{
  font-size: 16px;
  transition: transform .2s ease;
}
.np-carousel__btn--prev:hover i{ transform: translateX(-2px); }
.np-carousel__btn--next:hover i{ transform: translateX(2px); }
.np-carousel__btn .carousel-control-prev-icon,
.np-carousel__btn .carousel-control-next-icon{ display: none; }

.np-carousel__bar{
  margin: 16px 0 14px;
  display: flex; align-items: center; gap: 14px;
  padding: 0 4px;
}
.np-carousel__counter{
  font-family: var(--f-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--muted);
  flex: 0 0 auto;
}
.np-carousel__counter strong{
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-right: 4px;
  letter-spacing: -.01em;
}
.np-carousel__play{
  appearance: none; border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  cursor: pointer;
  transition: .2s ease;
  flex: 0 0 auto;
}
.np-carousel__play:hover{
  background: var(--accent);
  border-color: var(--accent);
  color: var(--paper);
}
.np-carousel__progress{
  flex: 1;
  height: 2px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.np-carousel__progress span{
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .7s cubic-bezier(.3,.7,.2,1);
}

.np-carousel__thumbs{
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 2px 2px 14px;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.np-carousel__thumbs::-webkit-scrollbar{ height: 6px; }
.np-carousel__thumbs::-webkit-scrollbar-track{ background: transparent; }
.np-carousel__thumbs::-webkit-scrollbar-thumb{ background: var(--line); border-radius: 999px; }

.np-thumb{
  appearance: none;
  flex: 0 0 auto;
  width: 78px; height: 60px;
  padding: 0;
  border: 2px solid transparent;
  background: var(--paper);
  border-radius: var(--rad);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: .25s ease;
  opacity: .65;
}
.np-thumb img{
  width: 100%; height: 100%;
  object-fit: cover;
}
.np-thumb:hover{ opacity: 1; }
.np-thumb.is-active{
  border-color: var(--accent);
  opacity: 1;
  transform: scale(1.04);
  box-shadow: 0 4px 14px -4px rgba(192,74,31,.45);
}

.np-gallery__note{
  margin-top: 8px;
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}
.np-gallery__note i{ color: var(--accent); }

@media (max-width: 767.98px){
  .np-carousel .carousel-inner{ height: clamp(280px, 56vw, 420px); }
  .np-carousel__btn{ width: 44px; height: 44px; }
  .np-carousel__btn--prev{ left: 10px; }
  .np-carousel__btn--next{ right: 10px; }
  .np-slide__cap{ padding: 18px; }
  .np-slide__t{ font-size: 18px; }
  .np-thumb{ width: 64px; height: 48px; }
}

.np-lightbox .modal-content{
  background: transparent;
  border: 0;
  position: relative;
}
.np-lightbox img{
  width: 100%; height: auto;
  display: block;
  border-radius: var(--rad);
  max-height: 88vh;
  object-fit: contain;
  background: var(--ink);
}
.np-lightbox__close{
  position: absolute;
  top: -44px; right: 0;
  width: 38px; height: 38px;
  background: var(--paper);
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  transition: .2s ease;
  display: flex; align-items: center; justify-content: center;
}
.np-lightbox__close:hover{ background: var(--accent); color: var(--paper); }
.np-lightbox__cap{
  margin-top: 14px;
  text-align: center;
  font-family: var(--f-display);
  font-size: 18px;
  color: var(--paper);
  letter-spacing: -.005em;
}
.modal-backdrop.show{ opacity: .82; background: var(--ink); }

@media (max-width: 575.98px){
  .np-gphoto, .np-gphoto--tall{ aspect-ratio: 4 / 3; }
  .np-lightbox__close{ top: -38px; }
}

.np-station{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 24px 28px;
  margin-bottom: 20px;
}
.np-station header{
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.np-station__flag{
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border-radius: 6px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .08em;
  flex: 0 0 auto;
}
.np-station h3{
  font-family: var(--f-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  line-height: 1;
  letter-spacing: -.01em;
}
.np-station__city{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-top: 6px;
}

.np-person{
  padding: 14px 0;
}
.np-person + .np-person{
  border-top: 1px dashed var(--line);
}
.np-person__head{
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 12px;
}
.np-person__head i{
  color: var(--accent);
  font-size: 15px;
  flex: 0 0 18px;
  margin-top: 3px;
}
.np-person__head strong{
  display: block;
  font-weight: 600;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.25;
}
.np-person__head > div > span{
  display: block;
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: .02em;
}

.np-person ul{
  list-style: none; padding: 0 0 0 32px; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.np-person li{
  display: flex; align-items: center; gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
}
.np-person li i{
  color: var(--accent);
  font-size: 12.5px;
  flex: 0 0 14px;
}
.np-person li a{
  color: var(--ink);
  font-weight: 500;
  transition: color .2s ease;
  border-bottom: 1px solid var(--line);
}
.np-person li a:hover{ color: var(--accent); border-color: var(--accent); }

.np-form{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: clamp(20px, 2.2vw, 28px);
  align-self: flex-start;
}
.np-field{
  display: flex; flex-direction: column;
  gap: 5px;
}
.np-field > span{
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.np-field > span em{
  font-style: italic;
  text-transform: none;
  letter-spacing: .02em;
  font-weight: 500;
  color: var(--fog, #aaa);
  opacity: .75;
}
.np-field input,
.np-field select,
.np-field textarea{
  appearance: none;
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--rad);
  padding: 10px 14px;
  font: inherit;
  color: var(--ink);
  font-size: 14.5px;
  transition: .2s ease;
  outline: none;
}
.np-field textarea{ resize: vertical; min-height: 88px; line-height: 1.5; }
.np-field input:focus,
.np-field select:focus,
.np-field textarea:focus{
  border-color: var(--accent);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(192,74,31,.08);
}
.np-field select{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path d='M1 1 L6 7 L11 1' fill='none' stroke='%230F2640' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.np-footer{
  background: var(--ink);
  color: var(--bg-soft);
  padding: clamp(56px, 6vw, 80px) 0 0;
}
.np-footer__top{
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,254,249,.1);
}
.np-brand--footer{ color: var(--bg-soft); margin-bottom: 18px; }
.np-brand--footer .np-logo{ color: var(--bg-soft); }
.np-brand--footer .np-word__name{ color: var(--bg-soft); }
.np-brand--footer .np-word__sub{ color: var(--accent-2); }
.np-footer__about{
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(255,254,249,.72);
  max-width: 38ch;
  margin: 0;
}
.np-footer h6{
  font-family: var(--f-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin: 0 0 20px;
}
.np-footer ul{
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 10px;
}
.np-footer ul a, .np-footer ul li{
  color: rgba(255,254,249,.78);
  font-size: 14.5px;
  font-weight: 400;
  transition: color .2s ease;
}
.np-footer ul a:hover{ color: var(--accent-2); }
.np-footer__contact li{ display: flex; }
.np-footer__contact a{ color: rgba(255,254,249,.78); }

.np-footer__bottom{
  padding: 24px 0;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px;
  color: rgba(255,254,249,.55);
}

@media (max-width: 991.98px){
  .np-pillars{ grid-template-columns: 1fr; }
  .np-nav .navbar{ gap: 12px; }
}

@media (max-width: 575.98px){
  .np-word__name{ font-size: 22px; }
  .np-word__sub{ font-size: 9.5px; letter-spacing: .14em; }
  .np-logo{ width: 36px; height: 36px; }
  .np-brand{ gap: 9px; min-width: 0; flex: 1 1 auto; overflow: hidden; }
  .np-word{ min-width: 0; }
  .np-word__name, .np-word__sub{ white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .np-nav{ padding: 14px 0; }
  .np-nav.is-shrunk{ padding: 10px 0; }
  .np-burger{ flex: 0 0 auto; margin-left: 4px; width: 32px; height: 32px; }
  .np-burger span{ width: 22px; }
  .np-hero__cta .np-btn{ width: 100%; justify-content: center; }
  .np-footer__bottom{ flex-direction: column; }
  .np-mobile{ padding: 70px 18px 22px; }
  .np-mobile li a{ font-size: 20px; padding: 9px 0; }
  .np-hero::before{ display: none; }
  .np-top{ font-size: 12px; }
  .np-top__contact{ gap: 12px; flex-wrap: wrap; min-width: 0; }
  .np-lang{ flex: 0 0 auto; }
}

.np-totop{
  position: fixed;
  right: clamp(16px, 2vw, 28px);
  bottom: clamp(16px, 2vw, 28px);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px;
  cursor: pointer;
  z-index: 50;
  box-shadow: 0 12px 28px -10px rgba(15,38,64,.45);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .35s ease, transform .35s ease, background .25s ease, border-color .25s ease;
}
.np-totop.is-visible{
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.np-totop:hover{
  background: var(--accent);
  border-color: var(--accent);
}
.np-totop i{ transition: transform .25s ease; }
.np-totop:hover i{ transform: translateY(-2px); }

.np-reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
  will-change: opacity, transform;
}
.np-reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}
.np-reveal[data-d="1"]{ transition-delay: .07s; }
.np-reveal[data-d="2"]{ transition-delay: .14s; }
.np-reveal[data-d="3"]{ transition-delay: .21s; }
.np-reveal[data-d="4"]{ transition-delay: .28s; }
.np-reveal[data-d="5"]{ transition-delay: .35s; }
.np-reveal[data-d="6"]{ transition-delay: .42s; }

@media (prefers-reduced-motion: reduce){
  .np-service:hover, .np-exp:hover{ transform: none; }
  .np-reveal{ opacity: 1; transform: none; transition: none; }
  .np-totop{ transition: none; }
}
