*{ box-sizing:border-box; margin:0; padding:0; }
html,body{ height:100%; }

body{
  font-family: var(--font-main);
  background:#fff;
  color: var(--text);
}

a{ color:inherit; text-decoration:none; }

.skip-link{
  position:absolute;
  left:12px;
  top:10px;
  z-index:10000;
  padding:10px 12px;
  border-radius:12px;
  background: rgba(18,20,24,.92);
  color:#fff;
  border:1px solid rgba(198,170,127,.55);
  box-shadow:0 14px 40px rgba(0,0,0,.22);
  transform: translateY(-140%);
  transition: transform .18s ease;
}

.skip-link:focus{
  transform: translateY(0);
  outline:none;
}

.skip-link:focus-visible{
  outline:2px solid rgba(198,170,127,.95);
  outline-offset:2px;
}

.wrap{
  width:100%;
  max-width: var(--wrap);
  margin:0 auto;
  padding:0 20px;
}

body.no-scroll{ overflow:hidden; }

.hero{
  position:relative;
  height:100vh;
  min-height:640px;
  background:#000;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide{
  height:100%;
  background:#000;
}

.hero-nav{
  position:absolute;
  top:50%;
  z-index:5;
  width:44px;
  height:44px;
  border:1px solid rgba(255,255,255,.55);
  border-radius:999px;
  background:rgba(15,20,30,.26);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transform:translateY(-50%);
  cursor:pointer;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background .22s ease, border-color .22s ease, opacity .22s ease;
}

.hero-nav span{
  font-size:30px;
  line-height:1;
  margin-top:-2px;
}

.hero-nav:hover{
  background:rgba(15,20,30,.42);
  border-color:rgba(255,255,255,.78);
}

.hero-nav:focus-visible{
  outline:2px solid rgba(198,170,127,.95);
  outline-offset:2px;
}

.hero-nav-prev{ left:26px; }
.hero-nav-next{ right:26px; }

.hero-slide{
  position:relative;
  overflow:hidden;
  background:#000;
}

.hero-slide img{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1);
  transform-origin:center center;
  will-change: transform;
}

.hero-swiper .swiper-slide img{
  width:100%;
}

.hero-first-copy{
  position:absolute;
  left:50%;
  top:55%;
  z-index:2;
  transform: translate(-50%,-50%);
  width:calc(100% - 240px);
  max-width:1400px;
  padding:0;
  text-align:center;
  pointer-events:none;
}

.hero-first-copy h1{
  display:block;
  width:100%;
  margin:0;
  color:#fff;
  font-size:clamp(40px,6.2vw,140px);
  font-weight:700;
  letter-spacing:.12em;
  line-height:1.1;
  white-space:nowrap;
  text-shadow:
    0 8px 24px rgba(0,0,0,.45);
}

.hero-second-copy{
  position:absolute;
  left:0;
  right:0;
  bottom:11vh;
  z-index:2;
  max-width:none;
  padding:16px 5vw;
  border-radius:0;
  background:rgba(255,255,255,.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:0 8px 22px rgba(0,0,0,.12);
  text-align:right;
}

.hero-second-copy p{
  margin:0;
  color:#0a101f;
  line-height:1.25;
  font-weight:700;
  text-shadow:0 1px 0 rgba(255,255,255,.25);
}

.hero-second-copy p:first-child{
  font-size:clamp(20px,2.4vw,38px);
}

.hero-second-copy p:last-child{
  margin-top:6px;
  font-size:clamp(18px,2.1vw,32px);
}

.hero-third-copy{
  position:absolute;
  left:50%;
  top:50%;
  z-index:2;
  transform:translate(-50%,-50%);
  pointer-events:none;
}

.hero-third-copy p{
  margin:0;
  color:rgba(255,255,255,.82);
  writing-mode:vertical-rl;
  text-orientation:upright;
  font-size:clamp(18px,2.5vw,60px);
  font-weight:700;
  letter-spacing:.14em;
  line-height:1;
  text-shadow:0 8px 24px rgba(0,0,0,.36);
}

@media (max-width: 1200px){
  .hero-first-copy{
    width:calc(100% - 80px);
  }
}

@media (max-width: 768px){
  .hero-first-copy{
    left:50%;
    top:50%;
    transform: translate(-50%,-50%);
    width:calc(100% - 48px);
  }
  .hero-first-copy h1{
    font-size:clamp(18px,6.6vw,34px);
    letter-spacing:.08em;
    white-space:normal;
  }
  .hero-second-copy{
    left:0;
    right:0;
    bottom:28px;
    max-width:none;
    padding:10px 14px;
    border-radius:0;
  }
  .hero-second-copy p:first-child{
    font-size:clamp(16px,4.8vw,24px);
  }
  .hero-second-copy p:last-child{
    margin-top:4px;
    font-size:clamp(14px,4.2vw,20px);
  }
  .hero-third-copy p{
    font-size:clamp(12px,5.2vw,24px);
    letter-spacing:.08em;
  }
  .hero-nav{
    width:38px;
    height:38px;
  }
  .hero-nav span{
    font-size:24px;
  }
  .hero-nav-prev{ left:12px; }
  .hero-nav-next{ right:12px; }
}

@keyframes hero-float-hue{
  0%{
    transform: scale(1.03) translate(0,0);
    filter: brightness(1.02) saturate(1.02);
  }
  50%{
    transform: scale(1.07) translate(16px,-10px);
    filter: brightness(1.03) saturate(1.04);
  }
  100%{
    transform: scale(1.03) translate(0,0);
    filter: brightness(1.02) saturate(1.02);
  }
}

@keyframes hero-float-soft{
  0%{
    transform: scale(1.03) translate(0,0);
    filter: brightness(1.02) saturate(1.02);
  }
  50%{
    transform: scale(1.07) translate(16px,-10px);
    filter: brightness(1.04) saturate(1.04);
  }
  100%{
    transform: scale(1.03) translate(0,0);
    filter: brightness(1.02) saturate(1.02);
  }
}

@keyframes hero-float-third{
  0%{
    transform: scale(1.03) translate(0,0);
    filter: hue-rotate(0deg) brightness(1.02) saturate(1.02);
  }
  50%{
    transform: scale(1.06) translate(0,-12px);
    filter: hue-rotate(180deg) brightness(1.04) saturate(1.05);
  }
  100%{
    transform: scale(1.03) translate(0,0);
    filter: hue-rotate(0deg) brightness(1.02) saturate(1.02);
  }
}

.hero-swiper .swiper-slide img{
  animation:none;
  will-change:auto;
  transition: transform 1.2s ease-out, filter 1.2s ease-out;
}

.hero-swiper .swiper-slide{
  transition: opacity 1.1s ease-in-out;
}

.hero-swiper .swiper-wrapper{
  transition-timing-function:cubic-bezier(.22,.61,.36,1);
}

.hero-swiper .swiper-slide-active.hero-slide-third img.animate-float-hue{
  animation:hero-float-third 20s ease-in-out infinite !important;
  transform-origin:center center;
}

@media (prefers-reduced-motion: reduce){
  .hero-swiper .swiper-slide img{
    animation:none;
  }
}

.about-office-swiper{
  position:relative;
  width:100%;
  height:420px;
}

.about-office-swiper .swiper-slide{
  width:100%;
  height:100%;
}

.about-office-swiper .swiper-slide img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}

.about-office-pagination{
  position:absolute;
  left:0;
  right:0;
  bottom:14px !important;
  z-index:5;
  text-align:center;
}

.about-office-pagination .swiper-pagination-bullet{
  width:8px;
  height:8px;
  background:rgba(255,255,255,.72);
  opacity:1;
}

.about-office-pagination .swiper-pagination-bullet-active{
  width:18px;
  border-radius:999px;
  background:rgba(198,170,127,.96);
}

@media (max-width: 980px){
  .about-office-swiper{
    height:340px;
  }
}

@media (max-width: 768px){
  .about-office-swiper{
    height:240px;
  }
}

.service-lines{
  display:flex;
  flex-direction:column;
  gap:16px;
}

.service-line{
  position:relative;
  margin:0;
  padding-right:16px;
  color:#0a101f;
  font-size:clamp(22px,2.1vw,34px);
  font-weight:700;
  line-height:1.28;
  letter-spacing:.02em;
  text-shadow:0 1px 0 rgba(255,255,255,.32);
}

.service-line::after{
  content:"";
  position:absolute;
  right:0;
  top:50%;
  width:3px;
  height:58%;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(198,170,127,.96), rgba(198,170,127,.45));
  transform:translateY(-50%);
}

@media (max-width: 768px){
  .service-lines{
    gap:12px;
  }
  .service-line{
    font-size:clamp(18px,5.4vw,26px);
    padding-right:12px;
  }
}
